-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 923 Bytes
/
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
{
"name": "mtk-tool",
"version": "1.0.1",
"type": "module",
"description": "maptalks web worker 静态编译工具",
"keywords": [
"web worker",
"compile",
"maptalks"
],
"bin": {
"mtk-tool": "bin/index.js"
},
"scripts": {
"build": "tsc",
"test": "pnpm exec mtk-tool compile -i test/worker-source -o test/worker-compiled"
},
"license": "MIT",
"author": {
"name": "pluto369",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aliothor/mtk-tool.git"
},
"devDependencies": {
"@types/node": "^20.8.6",
"colorin": "^0.6.0",
"esno": "^0.17.0"
},
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.2.1",
"commander": "^11.1.0",
"rollup": "^4.1.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}