-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "swingset-root",
"description": "drop-in component library and documentation pages for next.js",
"version": "0.17.0",
"author": "Jeff Escalante",
"bugs": {
"url": "https://github.com/hashicorp/swingset/issues"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"concurrently": "^8.0.1",
"jest": "^29.5.0",
"next": "^13.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0",
"turbo": "^1.10.0",
"typescript": "^5.0.4"
},
"homepage": "https://github.com/hashicorp/swingset#readme",
"keywords": [
"component",
"component-library",
"library",
"next.js",
"storybook"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"next": ">=12.x <=13.x",
"react": ">=16.x <=18.x",
"react-dom": ">=16.x <=18.x"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp/swingset.git"
},
"scripts": {
"prerelease": "turbo build",
"prerelease:canary": "turbo build",
"release": "changeset publish",
"release:canary": "changeset publish --tag canary",
"test": "npx turbo run test --concurrency 1 --continue"
}
}