-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.7 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
54
55
56
57
58
59
60
{
"name": "flaster",
"version": "1.0.2",
"description": "A web interface for exploring and transforming JS code structures",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint -c eslint.config.mjs .",
"lint:fix": "eslint -c eslint.config.mjs . --fix",
"build": "npm run check:restringer-safe && vite build",
"check:restringer-safe": "node scripts/verify-restringer-safe.mjs",
"check:boundaries": "node scripts/check-boundaries.mjs",
"check:catalog": "node scripts/verify-structure-catalog.mjs",
"check:todos": "node scripts/check-todos.mjs",
"check:unused": "knip --no-progress",
"check": "npm run check:restringer-safe && npm run check:boundaries && npm run check:catalog && npm run check:todos && npm run check:unused && npm run lint && npm test",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0",
"flast": "latest",
"idb": "^8.0.3",
"js-md5": "^0.8.3",
"restringer": "^2.2.0",
"vue": "^3.5.30"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.2",
"@vue/test-utils": "^2.4.10",
"eslint": "^10.3.0",
"happy-dom": "^20.9.0",
"knip": "^5.88.1",
"vite": "^8.0.0",
"vitest": "^4.1.5"
},
"bugs": {
"url": "https://github.com/ctrl-escp/flaster/issues"
},
"bin": {
"flaster": "./bin/flaster.js"
},
"files": [
"bin",
"src"
],
"engines": {
"node": ">=20.19"
}
}