-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "@urnetwork/elements",
"author": "URnetwork <support@ur.io> (https://ur.io)",
"license": "ISC",
"version": "0.0.1-beta.5",
"repository": {
"type": "git",
"url": "git+https://github.com/urnetwork/elements.git"
},
"publishConfig": {
"access": "public"
},
"description": "A collection of web components and React components for building URnetwork interfaces.",
"homepage": "https://ur.io",
"bugs": {
"url": "https://github.com/urnetwork/elements/issues"
},
"type": "module",
"exports": {
"./styles.css": "./dist/assets/styles.css",
"./components": {
"types": "./dist/components/index.d.ts",
"default": "./dist/components.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:demo": "vite build --mode demo",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"release:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@lit/react": "^1.0.0",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0"
},
"peerDependencies": {
"@lit/react": "^1.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"lit": "^3.0.0"
}
}