-
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.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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": "@code0-tech/triangulum",
"version": "0.1.0",
"description": "",
"homepage": "https://github.com/code0-tech/triangulum#readme",
"bugs": {
"url": "https://github.com/code0-tech/triangulum/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code0-tech/triangulum.git"
},
"author": "CodeZero",
"type": "module",
"main": "./dist/triangulum.cjs.js",
"module": "./dist/triangulum.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/triangulum.es.js",
"require": "./dist/triangulum.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"build": "vite build"
},
"devDependencies": {
"@code0-tech/sagittarius-graphql-types": "0.0.0-experimental-2414125487-fbc8a5ec8a2dd07cc76957d4315281c246e98d57",
"@types/node": "^25.5.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.2",
"@typescript/vfs": "^1.6.4"
},
"peerDependencies": {
"@code0-tech/sagittarius-graphql-types": "0.0.0-experimental-2414125487-fbc8a5ec8a2dd07cc76957d4315281c246e98d57",
"typescript": "^5.9.3 || ^6.0.2",
"@typescript/vfs": "^1.6.4"
}
}