-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "treetop",
"version": "2.0.1",
"description": "Treetop",
"type": "module",
"scripts": {
"check": "svelte-check",
"compile-smui-theme-light": "smui-theme compile src/treetop/generated/smui.css -i src/theme",
"compile-smui-theme-dark": "smui-theme compile src/treetop/generated/smui-dark.css -i src/theme/dark",
"coverage": "vitest run --coverage",
"lint": "eslint ./src ./test",
"lint:fix": "eslint ./src ./test --fix",
"prettier": "prettier --check ./src ./test",
"prettier:fix": "prettier --write ./src ./test",
"build": "concurrently --max-processes 1 \"npm:build:background_script\" \"npm:build:options\" \"npm:build:treetop\" \"npm:build:welcome\" \"npm:build:manifest\"",
"build:watch": "concurrently \"npm:build:background_script:watch\" \"npm:build:options:watch\" \"npm:build:treetop:watch\" \"npm:build:welcome:watch\"",
"build:background_script": "vite build src/background_script",
"build:background_script:watch": "npm run build:background_script -- --mode development --watch",
"build:manifest": "node bin/build-manifest.js \"$TREETOP_TARGET\" \"dist/$TREETOP_TARGET\"",
"build:options": "vite build src/options",
"build:options:watch": "npm run build:options -- --mode development --watch",
"build:treetop": "vite build src/treetop",
"build:treetop:watch": "npm run build:treetop -- --mode development --watch",
"build:welcome": "vite build src/welcome",
"build:welcome:watch": "npm run build:welcome -- --mode development --watch",
"prepare": "npm run compile-smui-theme-light && npm run compile-smui-theme-dark",
"test": "TREETOP_TARGET=firefox vitest run",
"test:watch": "TREETOP_TARGET=firefox vitest watch",
"validate": "svelte-check --no-tsconfig"
},
"author": "Max Smolens <[email protected]>",
"license": "MIT",
"devDependencies": {
"@fontsource/inter": "~5.0.16",
"@fontsource/material-icons": "~5.0.11",
"@fontsource/news-cycle": "~5.0.18",
"@smui/button": "~7.0.0-beta.16",
"@smui/dialog": "~7.0.0-beta.16",
"@smui/icon-button": "~7.0.0-beta.16",
"@smui/linear-progress": "~7.0.0-beta.16",
"@smui/snackbar": "~7.0.0-beta.16",
"@smui/textfield": "~7.0.0-beta.16",
"@sveltejs/vite-plugin-svelte": "~3.0.1",
"@testing-library/jest-dom": "~6.1.6",
"@testing-library/svelte": "~4.0.5",
"@testing-library/user-event": "~14.5.1",
"@tsconfig/svelte": "~5.0.2",
"@types/faker": "5.5.9",
"@types/lodash-es": "~4.17.12",
"@typescript-eslint/eslint-plugin": "~6.16.0",
"@typescript-eslint/parser": "~6.16.0",
"chrome-types": "~0.1.246",
"concurrently": "~8.2.2",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-svelte": "~2.35.1",
"faker": "5.5.3",
"jsdom": "~23.0.1",
"lodash-es": "~4.17.21",
"normalize.css": "~8.0.1",
"prettier": "~3.1.1",
"prettier-plugin-svelte": "~3.1.2",
"rollup-plugin-copy": "~3.5.0",
"sass": "~1.69.5",
"smui-theme": "~7.0.0-beta.16",
"svelte": "~4.2.8",
"svelte-check": "~3.6.2",
"svelte-preprocess": "~5.1.3",
"typescript": "~5.3.3",
"vite": "~5.0.10",
"vite-tsconfig-paths": "~4.2.2",
"vitest": "~1.1.0"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}