-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 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": "@disguise-one/designer-pythonapi",
"version": "1.0.0",
"description": "A TypeScript library to interact with the Python API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepare": "rollup -c",
"start": "node dist/apiClient.js",
"test": "vitest"
},
"files": [
"dist/"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./vite-loader": {
"import": "./dist/vite-loader.js",
"require": "./dist/vite-loader.js",
"types": "./dist/vite-loader.d.ts"
}
},
"dependencies": {
"axios": "^1.4.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^10.0.1",
"rollup": "^3.29.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^5.3.0",
"typescript": "^5.2.2",
"vite": "^6.2.3",
"vitest": "^0.34.0"
},
"author": "",
"license": "MIT"
}