-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "@lix-js/react-utils",
"type": "module",
"publishConfig": {
"access": "public"
},
"version": "0.1.0",
"license": "Apache-2.0",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc --build",
"test": "tsc --noEmit && vitest run",
"test:watch": "vitest",
"lint": "oxlint --config .oxlintrc.json --tsconfig ./tsconfig.json --format stylish src",
"dev": "tsc --watch",
"format": "prettier --write --ignore-unknown ."
},
"_comment": "Required for tree-shaking https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free",
"sideEffects": false,
"peerDependencies": {
"@lix-js/sdk": "*",
"react": ">=19.0.0"
},
"devDependencies": {
"@lix-js/kysely": "*",
"@lix-js/sdk": "*",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.8",
"@vitest/coverage-v8": "^3.2.4",
"https-proxy-agent": "7.0.2",
"jsdom": "^26.1.0",
"oxlint": "^1.14.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"typescript": "^5.5.4",
"vitest": "^3.2.4"
}
}