-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
76 lines (76 loc) · 2.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@bigcommerce/big-design-icons",
"version": "1.2.1",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"typings": "dist/index.d.ts",
"license": "(MIT AND CC-BY-3.0)",
"author": "BigCommerce Inc",
"repository": {
"type": "git",
"url": "https://github.com/bigcommerce/big-design.git",
"directory": "packages/big-design-icons"
},
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:es && pnpm run build:dt",
"build:cjs": "NODE_ENV=production BABEL_ENV=cjs babel --extensions \".ts,.tsx\" ./src --out-dir ./dist/cjs",
"build:es": "NODE_ENV=production BABEL_ENV=es babel --extensions \".ts,.tsx\" ./src --out-dir ./dist/es",
"build:dt": "tsc --emitDeclarationOnly",
"build:icons": "node scripts/build.js",
"build:flags": "node scripts/build-flags.js",
"download": "node scripts/downloader.js",
"lint": "eslint . --max-warnings 0",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"flags",
"svgs"
],
"publishConfig": {
"access": "public"
},
"prettier": "@bigcommerce/eslint-config/prettier",
"dependencies": {
"@babel/runtime": "^7.26.0",
"@bigcommerce/big-design-theme": "workspace:^"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.26.0",
"@bigcommerce/configs": "workspace:^",
"@styled/typescript-styled-plugin": "^1.0.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@types/styled-components": "^5.1.34",
"babel-plugin-styled-components": "^2.0.7",
"camelcase": "^6.3.0",
"flag-icons": "^7.2.3",
"fs-extra": "^11.1.0",
"glob": "^11.0.0",
"inquirer": "^8.2.6",
"inquirer-autocomplete-prompt": "^2.0.1",
"prettier": "^2.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^6.0.1",
"styled-components": "^5.3.11",
"tiny-async-pool": "^2.0.1",
"typescript": "^5.6.3"
}
}