-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
41 lines (41 loc) · 1.4 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
{
"name": "@spectrum-icons/workflow",
"version": "4.2.19",
"description": "Spectrum UI components in React",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/adobe/react-spectrum"
},
"exports": {
"./*": {
"types": "./*.d.ts",
"import": "./*.module.mjs",
"require": "./*.js"
}
},
"scripts": {
"build-cjs": "cross-env BUILD_ENV=production babel --root-mode upward src -d . --extensions '.ts,.tsx'",
"build-esm": "cross-env BUILD_ENV=production babel src -d . --extensions '.ts,.tsx' --out-file-extension '.module.mjs' --config-file '../../../babel-esm.config.json'",
"generate-types": "tsc --project ./tsconfig.types.json",
"build-icons": "yarn build-cjs && yarn build-esm",
"make-icons": "babel-node --presets @babel/env ./scripts/generateIcons.cjs -i '[]' && yarn generate-types"
},
"dependencies": {
"@adobe/react-spectrum-workflow": "2.3.5",
"@react-spectrum/icon": "^3.8.3",
"@swc/helpers": "^0.5.0"
},
"devDependencies": {
"@spectrum-icons/build-tools": "3.0.0-alpha.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
},
"peerDependencies": {
"@react-spectrum/provider": "^3.0.0",
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
},
"publishConfig": {
"access": "public"
}
}