-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 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
{
"name": "@basketry/typespec",
"version": "0.1.0-alpha.1",
"description": "Basketry parser for TypeSpec service definitions",
"type": "module",
"main": "./lib/src/index.js",
"bin": {
"basketry-typespec": "./lib/src/rpc.js"
},
"scripts": {
"prebuild": "run-s -s clean lint",
"build": "run-s -s build:*",
"build:typescript": "tsc",
"postbuild": "chmod +x ./lib/src/rpc.js",
"clean": "run-s -s clean:*",
"clean:coverage": "rimraf coverage",
"clean:output": "rimraf lib",
"fix": "run-s -s fix:*",
"fix:eslint": "eslint --fix",
"fix:prettier": "prettier -w .",
"lint": "run-s -s lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"prepack": "run-s -s build",
"start": "node ./lib/index.js",
"pretest": "run-s -s clean",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules node_modules/.bin/jest"
},
"keywords": [],
"author": "Steve Konves",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basketry/typespec.git"
},
"bugs": {
"url": "https://github.com/basketry/typespec/issues"
},
"homepage": "https://github.com/basketry/typespec#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@typespec/http-server-js": "^0.58.0-alpha.18",
"@typespec/openapi": "^1.3.0",
"@typespec/openapi3": "^1.3.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"uuid": "^11.1.0"
},
"dependencies": {
"@typespec/compiler": "^1.3.0",
"@typespec/http": "^1.3.0",
"@typespec/rest": "^0.73.0",
"basketry": "^0.2.1",
"pluralize": "^8.0.0"
}
}