This repository has been archived by the owner on Jun 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.11 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
{
"name": "@gveditor/sdk",
"version": "0.5.4",
"description": "Graviton SDK to develop plugins.",
"main": "bin/index.js",
"bin": {
"gvsdk": "src/cli.js"
},
"exports": {
".": "./bin/index.js",
"./types": "./types/index.ts"
},
"scripts": {
"prepare": "npm run test:types && npm run build",
"build": "tsc --project . ",
"build:types": "tsc types/index",
"test:release:plugin.ts": "node src/cli.js --target plugin --project ./test/plugin.ts --mode release",
"test:release:plugin.tsx": "node src/cli.js --target plugin --project ./test/plugin.tsx --mode release",
"test:release:plugin.js": "node src/cli.js --target plugin --project ./test/plugin.js --mode release",
"test:release:plugin.jsx": "node src/cli.js --target plugin --project ./test/plugin.jsx --mode release",
"test:release:plugin.assets": "node src/cli.js --target plugin --project ./test/plugin.assets --mode release",
"test:watch:plugin": "node src/cli.js --target plugin --project ./test/plugin.ts",
"test:release:iconpack": "node src/cli.js --target iconpack --project ./test/iconpack --mode release",
"test:release:theme": "node src/cli.js --target theme --project ./test/theme --mode release",
"test:types": "tsc types/index.ts --outDir temp"
},
"author": "Marc Espín Sanz <[email protected]>",
"license": "MIT",
"repository": "https://github.com/Graviton-Code-Editor/graviton-sdk",
"bugs": "https://github.com/Graviton-Code-Editor/graviton-sdk/issues",
"dependencies": {
"@babel/core": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/node": "^14.6.2",
"babel-loader": "^8.1.0",
"buffer": "^6.0.3",
"commander": "^5.0.0",
"crypto-browserify": "^3.12.0",
"elliptic": "^6.5.3",
"file-loader": "^6.1.0",
"fs-extra": "^9.0.0",
"lodash": "^4.17.19",
"ncp": "^2.0.0",
"path-browserify": "^1.0.1",
"shebang-loader": "0.0.1",
"stream-browserify": "^3.0.0",
"ts-loader": "^8.0.13",
"typescript": "^4.0.2",
"webpack": "^5.11.1",
"zip-a-folder": "1.1.0"
},
"devDependencies": {
"react": "^16.13.1",
"webpack-cli": "^3.3.12"
}
}