-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.96 KB
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
{
"name": "solid-devtools-extension",
"version": "0.1.1",
"description": "Solid Developer Tools Chrome Extension",
"private": true,
"author": "Artem Khodyush",
"license": "MIT",
"scripts": {
"eslint": "eslint --ignore-path .gitignore .",
"eslint-fix-formatting": "eslint --ignore-path .gitignore --no-eslintrc --config .eslintrc.formatting.json --fix .",
"check-type-imports": "! grep -r --include '*.ts' --include '*.tsx' --exclude-dir node_modules '^import type' | grep -v 'solid-js' | grep -v -- \"-types';$\"",
"build": "npm-run-all clean -p build:*",
"watch": "npm-run-all clean -l -p watch:*",
"build:pages": "vite build",
"build:scripts": "rollup -c",
"watch:pages": "vite build --watch",
"watch:scripts": "rollup -c --watch",
"clean": "rm -rf dist"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.12.0",
"@html-eslint/parser": "^0.12.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chrome": "0.0.153",
"@types/lodash.throttle": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-unicorn": "^38.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.0.15",
"tslib": "^2.3.1",
"typescript": ">=4.5",
"vite": "^2.9.8",
"vite-plugin-solid": "^2.1.1",
"vitest": "^0.11.0",
"yarn": "^1.22.0"
},
"dependencies": {
"lodash.throttle": "^4.1.1",
"memoize-one": "^6.0.0",
"nanoid": "^3.1.30",
"nullthrows": "^1.1.1",
"solid-js": "^1.2.2"
}
}