-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.12 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
58
59
60
61
62
63
64
65
{
"name": "@twilio-paste/form",
"version": "12.0.1",
"category": "layout",
"status": "production",
"description": "A Form Layout standardizes spacing among form elements.",
"author": "Twilio Inc.",
"license": "MIT",
"main:dev": "src/index.tsx",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && NODE_ENV=production node build.js && tsc",
"build:js": "NODE_ENV=development node build.js",
"build:typedocs": "tsx ../../../../tools/build/generate-type-docs",
"clean": "rm -rf ./dist",
"tsc": "tsc"
},
"peerDependencies": {
"@twilio-paste/animation-library": "^3.0.0",
"@twilio-paste/box": "^11.0.0",
"@twilio-paste/color-contrast-utils": "^5.0.0",
"@twilio-paste/customization": "^9.0.0",
"@twilio-paste/design-tokens": "^10.0.0",
"@twilio-paste/heading": "^12.0.0",
"@twilio-paste/style-props": "^10.0.0",
"@twilio-paste/styling-library": "^4.0.0",
"@twilio-paste/text": "^11.0.0",
"@twilio-paste/theme": "^12.0.0",
"@twilio-paste/types": "^7.0.0",
"@twilio-paste/uid-library": "^3.0.0",
"@types/react": "^17.0.2 || ^18.0.27 || ^19.0.0",
"@types/react-dom": "^17.0.2 || ^18.0.10 || ^19.0.0",
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@twilio-paste/animation-library": "^3.0.1",
"@twilio-paste/box": "^11.0.1",
"@twilio-paste/color-contrast-utils": "^5.0.0",
"@twilio-paste/customization": "^9.0.1",
"@twilio-paste/design-tokens": "^10.3.0",
"@twilio-paste/heading": "^12.0.1",
"@twilio-paste/style-props": "^10.0.1",
"@twilio-paste/styling-library": "^4.0.1",
"@twilio-paste/text": "^11.0.1",
"@twilio-paste/theme": "^12.0.1",
"@twilio-paste/types": "^7.0.1",
"@twilio-paste/uid-library": "^3.0.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsx": "^4.0.0",
"typescript": "^4.9.4"
}
}