-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 909 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 909 Bytes
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
{
"name": "freeact",
"version": "1.0.0",
"description": "freeact is a mock of react. :D",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.tsx --bundle --format=esm --outfile=dist/bundle.js",
"start": "serve .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"type": "module",
"keywords": [
"react",
"freeact",
"mock",
"react-like",
"virtual-dom"
],
"author": "jdy8739",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@testing-library/dom": "^10.4.1",
"@vitest/ui": "^3.2.4",
"esbuild": "^0.25.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"happy-dom": "^20.0.4",
"prettier": "^3.5.3",
"serve": "^14.2.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.2.4"
}
}