-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "@eficy/core",
"version": "2.0.0",
"description": "A front-end orchestration framework by JSON.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"unpkg": "./dist/umd/core.min.js",
"private": false,
"scripts": {
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"test": "vitest run",
"prettier": "pretty-quick --staged",
"build": "pnpm -r --filter='./packages/*' run build",
"play": "pnpm -C playground run dev",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/xiaobebe/eficy.git"
},
"pre-commit": [
"test",
"prettier"
],
"files": [
"dist"
],
"author": "xiaobe <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/enzyme": "^3.10.12",
"axios-mock-adapter": "^1.21.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"father": "^4.0.5",
"happy-dom": "^6.0.4",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"vitest": "^0.23.4"
}
}