-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 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
{
"name": "@omnidotdev/typespec-drizzle",
"description": "TypeSpec Drizzle schema emitter",
"version": "0.2.0",
"license": "Apache-2.0",
"type": "module",
"main": "build/src/index.js",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"default": "./build/src/index.js"
},
"./testing": {
"types": "./build/src/testing/index.d.ts",
"default": "./build/src/testing/index.js"
}
},
"tspMain": "lib/main.tsp",
"homepage": "https://github.com/omnidotdev/typespec-drizzle#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/omnidotdev/typespec-drizzle.git"
},
"bugs": {
"url": "https://github.com/omnidotdev/typespec-drizzle/issues"
},
"files": [
"build/",
"lib/"
],
"keywords": [
"typespec",
"drizzle",
"emitter",
"tsp",
"codegen"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check",
"knip": "knip-bun",
"test": "bun test",
"release": "bun run build && changeset publish",
"prebuild": "rm -rf build",
"pretest": "bun run build",
"prepare": "husky"
},
"peerDependencies": {
"@typespec/compiler": "^1.8.0",
"@alloy-js/core": "^0.22.0",
"@alloy-js/typescript": "^0.22.0",
"@typespec/emitter-framework": "^0.15.0"
},
"devDependencies": {
"@alloy-js/core": "^0.22.0",
"@alloy-js/typescript": "^0.22.0",
"@biomejs/biome": "2.3.12",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.10",
"@typespec/compiler": "^1.8.0",
"@typespec/emitter-framework": "^0.15.0",
"husky": "^9.1.7",
"knip": "^5.82.1",
"ts-pattern": "^5.9.0",
"typescript": "5.9.3"
}
}