-
Notifications
You must be signed in to change notification settings - Fork 834
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 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
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
{
"name": "@lingo.dev/_react",
"version": "0.7.2",
"description": "Lingo.dev React Kit",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./build/core/index.d.ts",
"import": "./build/core/index.js"
},
"./client": {
"types": "./build/client/index.d.ts",
"import": "./build/client/index.js"
},
"./rsc": {
"types": "./build/rsc/index.d.ts",
"import": "./build/rsc/index.js"
},
"./react-router": {
"types": "./build/react-router/index.d.ts",
"import": "./build/react-router/index.js"
}
},
"files": [
"build"
],
"scripts": {
"dev": "unbuild && chokidar 'src/**/*' -c 'unbuild'",
"build": "pnpm typecheck && unbuild",
"typecheck": "tsc --noEmit",
"clean": "rm -rf build",
"test": "vitest --run",
"test:watch": "vitest -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/react": "16.3.0",
"@types/js-cookie": "3.0.6",
"@types/lodash": "4.17.21",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.4.1",
"chokidar-cli": "3.0.0",
"next": "15.2.6",
"react": "19.2.1",
"react-dom": "19.2.1",
"tsup": "8.5.1",
"typescript": "5.9.3",
"unbuild": "3.6.1",
"vitest": "3.1.1"
},
"peerDependencies": {
"next": "15.2.6"
},
"dependencies": {
"js-cookie": "3.0.5",
"lodash": "4.17.21"
}
}