-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.58 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.58 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
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
90
91
92
93
94
95
96
97
{
"name": "@kittycad/lib",
"version": "3.1.44",
"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",
"browser": "./dist/mjs/index.js",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/mjs/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/mjs/index.js",
"browser": "./dist/mjs/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",
"@biomejs/biome": "^1.9.0",
"@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": "~25",
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "~8.56",
"@typescript-eslint/parser": "~8.56",
"eslint": "^10.0.0",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "^29.12.1",
"fast-json-patch": "^3.1.1",
"handlebars": "^4.7.8",
"prettier": "^2.8.1",
"rimraf": "~6.1",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"tsutils": "~3.21",
"typescript": "~5.9",
"vitest": "^4.0.3"
},
"scripts": {
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build": "rimraf dist && npm run build:types && npm run build:js",
"gen": "node --loader ts-node/esm ./gen/modelsGen.ts && npm run fmt",
"test": "vitest",
"tsc": "tsc",
"fmt": "biome format --write ."
},
"author": "Kurt Hutten <kurt@zoo.dev>",
"license": "MIT",
"dependencies": {
"bson": "^7.1.1",
"cross-fetch": "^4.0.0",
"openapi-types": "^12.0.0",
"ts-node": "^10.9.1",
"tslib": "~2.8",
"ws": "^8.17.0"
},
"optionalDependencies": {
"win-ca": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}