-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "@db-ui/react-elements",
"sideEffects": false,
"version": "0.0.0",
"description": "React specific wrapper for @db-ui/elements",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/db-ui/elements.git",
"directory": "db-ui-elements-react"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"stencil:workaround": "node ../../scripts/react-helper.mjs",
"pretest": "npm run stencil:workaround",
"prebuild": "npm run stencil:workaround",
"build": "npm run clean && npm run tsc",
"build:prod": "npm run clean && npm run tsc:prod",
"clean": "rimraf dist",
"tsc": "tsc -p . ",
"tsc:prod": "tsc -p . --sourceMap false",
"watch": "npm run tsc --watch"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@types/react-dom": "18.3.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"rollup": "4.59.0",
"rollup-plugin-node-resolve": "5.2.0"
}
}