-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "@night-tea/ruler",
"version": "1.1.0",
"description": "原生canvas绘制标尺,可以进行平移与缩放,js库,所以不受前端框架限制,适用于各个项目中",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "rollup -c"
},
"keywords": [
"js",
"ruler",
"canvas",
"three"
],
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hahaxiaowai/ruler.git"
},
"author": "night tea(hahaxiaowai)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/runtime": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "13.2.0",
"@rollup/plugin-terser": "^0.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"rollup": "^4.18.0",
"rollup-obfuscator": "^3.0.2",
"rollup-plugin-uglify": "^6.0.4"
}
}