-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "auditioner",
"version": "0.2.1",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepack": "jest && npm run build",
"build": "rollup -c && tsc",
"test": "jest --watch"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Patrick Smith",
"devDependencies": {
"@adobe/react-spectrum": "^3.33.1",
"@headlessui/react": "^1.7.18",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.2.206",
"@swc/jest": "^0.2.21",
"@testing-library/dom": "^9",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^14",
"@testing-library/user-event": "^14",
"@types/jest": "^29",
"@types/node": "^20.11.10",
"@types/react": "^18.2",
"@types/react-dom": "^18.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29",
"jest-environment-jsdom": "^29",
"jest-transform-css": "^6",
"jest-zest": "^0.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"tslib": "^2",
"typescript": "^5"
},
"peerDependencies": {
"@testing-library/dom": "*",
"@testing-library/user-event": "*"
}
}