-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "@epiijs/client",
"version": "1.1.0",
"description": "A simple React client runtime.",
"type": "module",
"main": "build/index.js",
"exports": "./build/index.js",
"scripts": {
"clean": "rm -rf build && rm -rf coverage && rm -rf .nyc_output",
"build": "npm run clean && eslint --ext .ts && tsc && cp -r src/fixtures build/fixtures",
"test": "npm run build && nyc --reporter=lcov mocha test/index.js --exit",
"lcov": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiijs/client.git"
},
"keywords": [
"epii",
"client",
"web"
],
"author": "Sartrey Lee <[email protected]> (https://sartrey.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiijs/client/issues"
},
"homepage": "https://github.com/epiijs/client#readme",
"devDependencies": {
"@epiijs/eslint-config": "^0.1.4",
"@types/node": "^20.8.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.17",
"eslint": "^8.50.0"
},
"dependencies": {
"@epiijs/config": "^0.5.0",
"@vitejs/plugin-react": "^4.2.0",
"less": "^4.2.0",
"vite": "^5.0.11"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}