This repository was archived by the owner on Dec 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "@tpr/core",
"version": "4.0.0",
"description": "TPR Core components",
"author": "David Alekna <[email protected]>",
"license": "MIT",
"main": "./lib/index.cjs.js",
"module": "./lib/index.js",
"typings": "./lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "https://github.com/thepensionsregulator/react-components.git"
},
"bugs": {
"url": "https://github.com/thepensionsregulator/react-components/issues"
},
"homepage": "https://github.com/thepensionsregulator/react-components#readme",
"keywords": [
"tpr"
],
"scripts": {
"prepare": "yarn build",
"copycss": "copyfiles -u 1 \"./src/**/*.{css,scss}\" \"./lib/\" && echo @tpr/core css files copied.",
"bundle": "cross-env-shell \"../../node_modules/.bin/rollup\" -c rollup.config.js",
"build": "tsc -b && yarn copycss",
"clean": "rimraf lib"
},
"peerDependencies": {
"@tpr/theming": "^2.4.0",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"dependencies": {
"@xstate/react": "^1.2.2",
"final-form": "^4.20.1",
"qs": "^6.9.6",
"react-final-form": "^6.5.2",
"tslib": "^2.1.0",
"xstate": "^4.16.2"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tpr/theming": "file:../theming",
"cross-env": "^7.0.3",
"node-sass": "^5.0.0",
"postcss": "^8.2.6",
"react": "file:../../node_modules/react",
"react-dom": "file:../../node_modules/react-dom"
},
"gitHead": "57aec9c9de22596d6343bae07eb6b198322a0bee"
}