-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
67
68
69
70
71
{
"name": "@wuchuheng/helper",
"version": "1.3.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "npm run build:release",
"build:dev": "tsup --sourcemap",
"build:release": "SOURCE_MAP=false tsup --minify",
"build:watch": "tsup --watch",
"test": "jest --config=jest.config.js",
"dev": "tsup --watch --onSuccess \"echo Build completed!\"",
"docs": "storybook dev -p 6006",
"docs:build": "storybook build -o docs",
"docs:serve": "npx http-server docs -p 8080 -o",
"package:publish": " npm run build && npm publish --access public"
},
"homepage": "https://github.com/wuchuhengtools/helper",
"repository": {
"type": "git",
"url": "git+https://github.com/wuchuhengtools/helper"
},
"license": "MIT",
"devDependencies": {
"@storybook/addon-controls": "^8.0.0",
"@storybook/addon-docs": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-viewport": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^20.19.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"codecov": "^3.8.1",
"jest": "^27.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"storybook": "^8.0.0",
"ts-jest": "^27.1.4",
"tsup": "^8.5.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@storybook/blocks": "^8.6.14",
"@types/react-syntax-highlighter": "^15.5.13",
"react-syntax-highlighter": "^15.6.6",
"types": "*"
},
"publishConfig": {
"access": "public"
}
}