-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.25 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.25 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
{
"scripts": {
"test": "ava --verbose",
"build": "tsc && rollup -c",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"preversion": "npm test",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^25.2.3",
"ava": "^6.4.1",
"eslint": "^9.0.0",
"rollup": "^4.57.1",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.32.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"workerThreads": false,
"nodeArguments": [
"--import=tsx"
]
},
"name": "@84codes/sparoid",
"type": "module",
"version": "3.0.1",
"description": "SPAroid client",
"main": "dist/sparoid.cjs",
"types": "dist/sparoid.d.ts",
"exports": {
"import": {
"types": "./dist/sparoid.d.ts",
"default": "./dist/sparoid.js"
},
"require": "./dist/sparoid.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/84codes/sparoid.js.git"
},
"files": [
"dist/"
],
"author": "84codes",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/84codes/sparoid.js/issues"
},
"homepage": "https://github.com/84codes/sparoid.js#readme",
"directories": {
"test": "test"
}
}