-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.75 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
{
"name": "velo-filesystem",
"title": "Velo Filesystem",
"version": "0.8.0",
"description": "Chrome extension for managing the virtual file system in Velo by Wix",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "NODE_NO_WARNINGS=1 rollup -c -w",
"build": "NODE_NO_WARNINGS=1 rollup -c",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' && stylelint 'src/**/*.css'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix && stylelint 'src/**/*.css' --fix",
"zip": "npm run build && NODE_NO_WARNINGS=1 node zip.js",
"test": "NODE_NO_WARNINGS=1 node --experimental-loader ts-node/esm --test tests/**/*.spec.ts"
},
"dependencies": {
"jsx-dom-runtime": "^0.71.0",
"storeon-velo": "^5.0.0-rc.5"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@evilmartians/lefthook": "^1.9.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.1",
"@types/wicg-file-system-access": "^2023.10.5",
"cross-zip": "^4.0.1",
"eslint": "^9.16.0",
"monaco-editor": "^0.52.0",
"rollup": "^4.28.1",
"rollup-plugin-css-only": "^4.5.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"homepage": "https://github.com/shoonia/velo-filesystem",
"discussions": "https://github.com/shoonia/velo-filesystem/discussions",
"author": {
"name": "Alexander Zaytsev",
"email": "alexanderz@wix.com",
"url": "https://x.com/_shoonia"
},
"private": false,
"license": "MIT"
}