-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 KB
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
{
"private": true,
"description": "A modern React component system with signals reactivity for B-end applications.",
"packageManager": "pnpm@9.12.3",
"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",
"scripts": {
"dev": "turbo run dev",
"test": "turbo run test",
"prettier": "turbo run prettier",
"build": "turbo run build",
"play": "pnpm -C playground run dev",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"release:version": "node scripts/release.js version",
"release:publish": "node scripts/release.js publish",
"release:status": "node scripts/release.js status"
},
"repository": {
"type": "git",
"url": "https://github.com/yee94/Eficy.git"
},
"pre-commit": [
"test",
"prettier"
],
"files": [
"dist"
],
"author": "yee94 <wyy.xb@qq.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@rslib/core": "^0.11.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-v8": "^1.0.0",
"axios-mock-adapter": "^1.22.0",
"jsdom": "^26.1.0",
"lodash-es": "^4.17.21",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"tsdown": "^0.13.0",
"turbo": "^2.5.5",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
}
}