forked from sumup-oss/circuit-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 KB
/
package.json
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
{
"name": "@sumup/icons",
"version": "2.15.0",
"description": "A collection of icons by SumUp",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"README.md",
"*.svg",
"manifest.json"
],
"repository": {
"type": "git",
"directory": "packages/icons",
"url": "git+https://github.com/sumup-oss/circuit-ui.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sumup-oss/circuit-ui/issues"
},
"homepage": "https://github.com/sumup-oss/circuit-ui/tree/main/packages/icons/README.md",
"scripts": {
"start": "ts-node-dev --respawn --watch web ./scripts/web.ts",
"build": "ts-node ./scripts/web.ts",
"lint": "foundry run eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "yarn lint --fix",
"prepublish": "yarn build && cp web/v1/* .",
"postpublish": "rm -f *.svg"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@types/babel__core": "^7.1.19",
"@types/dedent": "^0.7.0",
"@types/lodash": "^4.14.186",
"babel-plugin-inline-react-svg": "^2.0.1",
"dedent": "^0.7.0",
"lodash": "^4.17.15",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": ">=16.0.0 <19.0.0"
}
}