-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.77 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
{
"name": "@assemble-inc/blueprint",
"version": "0.6.2",
"repository": {
"type": "git",
"url": "git+https://github.com/assembleinc/blueprint.git"
},
"bugs": {
"url": "https://github.com/assembleinc/blueprint/issues"
},
"homepage": "https://github.com/assembleinc/blueprint#readme",
"scripts": {
"build": "tsc && vite build",
"prepare": "rm -rf ./dist && npm run build",
"storybook": "storybook dev"
},
"description": "Blueprint- A core data object React component library.",
"author": "Assemble Frontend Team",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/asm-core.umd.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"enginesStrict": true,
"engines": {
"node": "^12.16.0 || ^14.17.0 || >=16.0.0 || 18.x",
"npm": "please-use-yarn",
"yarn": ">=1.22.3"
},
"type": "module",
"peerDependencies": {
"react": "^16.8.0 || 17.x || 18.x",
"react-dom": "^16.8.0 || 17.x || 18.x"
},
"dependencies": {
"styled-components": "^5.3.9",
"uuid": "^9.0.0"
},
"devDependencies": {
"@assemble-inc/tsconfig": "^0.1.1",
"@assemble-inc/util": "0.1.7",
"@storybook/addon-actions": "^7.0.0-rc.3",
"@storybook/cli": "^7.0.0-rc.3",
"@storybook/react-vite": "^7.0.0-rc.3",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react": "^3.1.0",
"classnames": "^2.3.2",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-css-injected-by-js": "^3.0.1",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-static-copy": "^0.13.1"
}
}