-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "gero",
"version": "0.1.0",
"description": "A 16-bit register-based virtual machine written in TS",
"main": "index.js",
"repository": "https://github.com/salty-max/gero",
"author": "Maxime Blanc",
"license": "MIT",
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"fmt": "prettier --write src/**/*.ts",
"test": "jest",
"docs": "rm -rf docs && typedoc"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"fast-text-encoding": "^1.0.6",
"jest": "^29.6.1",
"parsil": "^1.6.0",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/node": "^20.4.2",
"vite": "^4.4.6"
}
}