-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
{
"version": "2.1.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/labd/react-abode"
},
"packageManager": "pnpm@9.7.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.5.2"
},
"scripts": {
"start": "tsup ./src/index.ts --dts --watch",
"build": "tsup ./src/index.ts --dts --sourcemap --format esm,cjs",
"changeset": "pnpm exec changeset",
"get:changes": "git log --format=%B --no-merges HEAD ^master | pbcopy",
"husky:install": "pnpm exec husky install",
"lint": "eslint --ext .ts,.tsx src",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "pnpm build",
"preinstall": "npx only-allow pnpm"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-abode",
"author": "Bram Kaashoek",
"module": "dist/index.mjs",
"devDependencies": {
"@changesets/cli": "^2.24.2",
"@types/jest": "^28.1.6",
"@types/jsdom": "^20.0.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"fast-check": "^3.1.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mutationobserver-shim": "^0.3.7",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tslib": "^2.0.0",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"resolutions": {
"serialize-javascript": "^3.1.0"
},
"dependencies": {
"tiny-current-script": "^1.0.0"
}
}