-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.44 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
{
"name": "@kittycad/lib",
"version": "2.0.12",
"description": "Javascript library for KittyCAD API",
"type": "module",
"keywords": [
"hardware",
"library",
"CAD",
"Computer aided design",
"mechanical engineering",
"typescript"
],
"homepage": "https://github.com/KittyCAD/kittycad.ts#readme",
"bugs": {
"url": "https://github.com/KittyCAD/kittycad.ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KittyCAD/kittycad.ts.git"
},
"exports": {
"./types": "./dist/types/src/index.d.ts",
"./import": "./dist/mjs/index.js",
"./require": "./dist/cjs/index.cjs"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/mjs/index.js",
"browser": "./dist/umd/index.js",
"types": "./dist/types/src",
"files": [
"dist"
],
"engines": {
"node": ">= 16.13"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.5.3",
"@types/node": "~20",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "~8.4",
"@typescript-eslint/parser": "~8.4",
"eslint": "^8.29.0",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "^28.8.3",
"fast-json-patch": "^3.1.1",
"prettier": "^2.8.1",
"rimraf": "~3.0",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"tsutils": "~3.21",
"typescript": "~4.7",
"vitest": "^0.33.0"
},
"scripts": {
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build": "rimraf dist && npm run build:types && npm run build:js",
"gen": "node --experimental-loader ts-node/esm.mjs ./src/modelsGen.ts && rm -rf __tests__/gen/modeling-modeling_commands_ws.test.ts && rm -rf src/api/modeling/modeling_commands_ws.ts && yarn fmt",
"test": "vitest",
"tsc": "tsc",
"fmt": "prettier --config .prettierrc --write './src' './__tests__' './kittycad.ts.patch.json' './rollup.config.js'"
},
"author": "Kurt Hutten <[email protected]>",
"license": "MIT",
"dependencies": {
"openapi-types": "^12.0.0",
"ts-node": "^10.9.1",
"tslib": "~2.4"
},
"publishConfig": {
"access": "public"
}
}