-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.95 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-server-action",
"version": "0.2.15",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"esm.mjs",
"register.mjs",
"browser.js"
],
"napi": {
"binaryName": "react-server-action",
"packageName": "react-server-action",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc",
"armv7-linux-androideabi"
]
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^3.0.0-alpha.55",
"@taplo/cli": "^0.7.0",
"ava": "^6.1.3",
"benny": "^3.7.1",
"chalk": "^5.3.0",
"emnapi": "^1.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"oxlint": "^0.5.1",
"prettier": "^3.3.2",
"tsx": "^4.16.2",
"typescript": "^5.5.2"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"eslint --fix"
],
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"prettier --write"
],
"*.toml": [
"taplo format"
]
},
"ava": {
"require": [
"tsx"
],
"extensions": [
"ts"
],
"timeout": "2m",
"workerThreads": false,
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
}
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"test": "ava ./tests",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/himself65/react-server"
}
}