-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·69 lines (69 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sketch-editor",
"version": "0.11.4",
"maintainers": [
{
"name": "army8735",
"email": "[email protected]"
}
],
"scripts": {
"build": "rimraf ./types && rimraf ./dist && tsc && rollup -c rollup.config.mjs",
"dev": "rollup -c rollup.dev.config.mjs --watch",
"test": "mocha test/tests.js -R spec",
"test1": "nightwatch --group group1 --filter test.js",
"test2": "nightwatch --group group2 --filter test.js",
"test3": "nightwatch --group group3 --filter test.js",
"test4": "nightwatch --group group4 --filter test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/army8735/editor.git"
},
"peerDependencies": {
"pdfjs-dist": "^3.11.174",
"vanilla-picker": "^2.12.3"
},
"dependencies": {
"@sketch-hq/sketch-file-format-ts": "^6.5.0",
"ag-psd": "^22.0.2",
"jszip": "^3.10.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/uuid": "^9.0.1",
"chromedriver": "^131.0.1",
"expect.js": "^0.3.1",
"less": "^4.2.0",
"mocha": "^10.4.0",
"nightwatch": "^1.7.13",
"postcss": "^8.4.38",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-postcss": "^4.0.2",
"selenium-server": "^3.141.59",
"tslib": "^2.8.1",
"typescript": "~5.6.3",
"webstorm-disable-index": "^1.2.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"author": "army8735 <[email protected]>"
}