This repository was archived by the owner on Feb 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@ordinateio/tooltip",
"version": "3.0.2",
"description": "The implementation of simple tooltips.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"style": "dist/index.css",
"files": [
"dist/**/*"
],
"author": "Ordinate IO (https://github.com/ordinateio)",
"license": "MIT",
"homepage": "https://github.com/ordinateio/tooltip",
"bugs": {
"url": "https://github.com/ordinateio/tooltip/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ordinateio/tooltip.git"
},
"keywords": [
"front-end",
"ui",
"typescript"
],
"scripts": {
"build": "tsc --project tsconfig.json && sass --no-source-map src/index.scss dist/index.css && npx copyfiles -u 1 src/assets/** dist",
"build:dev": "webpack --config demo/webpack.dev.js",
"build:dev:watch": "webpack --watch --config demo/webpack.dev.js",
"build:dev:serve": "live-server ./demo",
"clean": "rimraf .cache dist demo/dist",
"npm:pack": "npm run build && npm pack",
"npm:publish": "npm run build && npm publish --access public",
"npm:install:lock:only": "npm install --package-lock-only"
},
"devDependencies": {
"@types/node": "^16",
"autoprefixer": "^10",
"css-loader": "^6",
"cssnano": "^5",
"live-server": "^1",
"postcss-loader": "^6",
"rimraf": "^3",
"sass": "^1",
"sass-loader": "^12",
"style-loader": "^3",
"ts-loader": "^9",
"typescript": "^4",
"webpack": "^5",
"webpack-cli": "^4",
"webpack-merge": "^5"
},
"dependencies": {
"tippy.js": "^6"
}
}