-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "@codize/piston",
"version": "0.2.1",
"license": "MIT",
"description": "TypeScript SDK for the Piston code execution API.",
"author": "koki-develop <kou.pg.0131@gmail.com>",
"homepage": "https://github.com/codize-dev/piston-sdk-js",
"repository": {
"type": "git",
"url": "git+https://github.com/codize-dev/piston-sdk-js.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"test": "vitest",
"lint": "biome check",
"format": "biome check --write",
"typecheck": "tsc --noEmit",
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=18"
},
"sideEffects": false,
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/node": "22.19.11",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"typescript": "5.9.3",
"vitest": "4.0.18"
}
}