-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.45 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
{
"name": "vimtips-plus",
"private": true,
"version": "1.0.15",
"type": "module",
"description": "Learn vim with daily small tips that you can practice right in the browser. Features a built-in vim terminal implemented in wasm.",
"scripts": {
"build": "echo 'this buggy action needs a build command present'",
"build-tips": "tsx ./scripts/process-tips.mts",
"build-sw": "vite build --config vite.sw.config.mts",
"zip-dist": "tsx ./scripts/zip-dist.mts",
"preview": "vite preview",
"start:dev": "ts-node",
"test": "echo no tests yet",
"lint:style": "npx eslint --fix",
"bump-manifest": "tsx ./scripts/bump-manifest.mts",
"prebump": "npm run build-tips && npm run bump-manifest && git acu \"chore: pre-release commit\" && npm run build-app",
"bump": "npx bumpp",
"postbump": "npm run zip-dist",
"lint:react": "npx eslint --config ./eslintrc.react.json --ext .ts,.tsx,.mts source",
"dev": "vite --force",
"build-app": "tsc && vite build"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
"@swc/core": "^1.3.101",
"@types/chrome": "^0.0.266",
"@types/core-js": "^2.5.8",
"@types/markdown-it": "^14.0.0",
"@types/node": "^20.12.5",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@whyframe/core": "^0.1.11",
"@whyframe/jsx": "^0.1.10",
"bumpp": "^9.4.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-sort-class-members": "^1.20.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"eslint-plugin-unicorn": "^52.0.0",
"highlight.js": "^11.9.0",
"indent-string": "^5.0.0",
"markdown-it": "^14.1.0",
"pathe": "^1.1.2",
"rimraf": "^5.0.5",
"terser": "^5.30.4",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"turndown": "^7.1.3",
"typescript": "^5.2.2",
"unocss": "^0.59.0",
"vite": "^5.2.0",
"vite-plugin-static-copy": "^1.0.2",
"wrap-ansi": "^9.0.0"
},
"dependencies": {
"clean-components": "^1.0.20",
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ua-parser-js": "^1.0.37",
"vim-wasm": "^0.0.13"
}
}