-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
{
"name": "antithesis-sdk",
"version": "0.1.0-dev.1",
"description": "Antithesis SDK for Typescript and Javascript",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": "./dist/src/index.js",
"./internal": "./dist/src/internal/index.js"
},
"scripts": {
"build": "tsc",
"build:all": "npm-run-all lint format test test:coverage clean && tsc",
"clean": "rimraf ./dist ./docs",
"format": "npx prettier --write src",
"format:check": "npx prettier --check src",
"jsdoc": "tsc && jsdoc -c jsdoc.json",
"lint": "eslint src",
"local": "tsx src",
"local:watch": "nodemon src -e ts,json -exec 'npm run local'",
"start": "node src",
"test:coverage": "vitest run --coverage",
"test": "vitest run"
},
"files": [
"dist/src/*"
],
"keywords": [],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/antithesishq/antithesis-sdk-typescript"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jsdoc": "^4.0.2",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^2.1.5"
},
"dependencies": {
"koffi": "^2.7.3"
}
}