-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "theme-party",
"author": "Eric Rabinowitz",
"version": "0.4.0",
"license": "MIT",
"repository": "github:ericrav/theme-party",
"dependencies": {
"lodash": "^4.0.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"packageManager": "yarn@3.6.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsafe": "^1.6.4",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
}
}