-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.48 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
{
"name": "@delibay/prjs",
"version": "0.1.0",
"license": "UNLICENSED",
"description": "Run small JS exos in your terminal with instant feedback",
"author": "Samuel Roland and PRJS contributors",
"keywords": [
"deliberate-practice",
"deliberate",
"practice",
"learn",
"exercises",
"exos",
"delibay",
"feedback",
"tui",
"ink",
"kata"
],
"main": "dist/index.js",
"bin": "dist/CLI.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"test": "vitest"
},
"files": [
"dist"
],
"dependencies": {
"chokidar": "^3.6.0",
"fullscreen-ink": "^0.0.2",
"ink": "^5.0.1",
"ink-gradient": "^3.0.0",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"node-emoji": "^2.1.3",
"noop-stream": "^1.0.0",
"react": "^18.3.1",
"vitest": "^2.0.5",
"zustand": "^4.5.4"
},
"devDependencies": {
"@slidev/cli": "^0.49.24",
"@slidev/theme-default": "^0.25.0",
"@types/diff": "^5.2.1",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@vdemedes/prettier-config": "^2.0.1",
"chalk": "^5.3.0",
"esbuild": "^0.23.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"ink-testing-library": "^4.0.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-uglify": "^6.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"prettier": "@vdemedes/prettier-config"
}