-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "symphony-ts",
"version": "0.1.5",
"license": "Apache-2.0",
"type": "module",
"description": "TypeScript implementation of Symphony",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"symphony": "./dist/src/cli/main.js"
},
"files": ["dist/src", "README.md"],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OasAIStudio/symphony-ts.git"
},
"bugs": {
"url": "https://github.com/OasAIStudio/symphony-ts/issues"
},
"homepage": "https://github.com/OasAIStudio/symphony-ts#readme",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.30.2",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "pnpm build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.14",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"dependencies": {
"graphql": "^16.13.1",
"liquidjs": "^10.24.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
}
}