-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "@tejo/akso-script-editor",
"version": "0.1.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"sideEffects": [
"*.css"
],
"author": "",
"license": "ISC",
"scripts": {
"prepare": "npm run build",
"build": "npx rollup -c",
"watch-test": "env NODE_ENV=test rollup -c --watch"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-eslint": "^9.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"less": "^4.1.3",
"postcss": "^8.4.18",
"rollup": "^3.3.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@codemirror/language": "^6.3.1",
"@codemirror/state": "^6.1.3",
"@codemirror/view": "^6.4.2",
"@lezer/highlight": "^1.1.2",
"@tejo/akso-script": "^0.2.8",
"codemirror": "^6.0.1",
"pointer-tracker": "^2.3.0"
}
}