forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.92 KB
/
package.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@cadl-lang/compiler",
"version": "0.32.0",
"description": "Cadl Compiler Preview",
"author": "Microsoft Corporation",
"license": "MIT",
"homepage": "https://github.com/Microsoft/cadl",
"readme": "https://github.com/Microsoft/cadl/blob/master/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/cadl.git"
},
"bugs": {
"url": "https://github.com/Microsoft/cadl/issues"
},
"keywords": [
"cadl",
"cli"
],
"type": "module",
"main": "dist/core/index.js",
"cadlMain": "lib/main.cadl",
"exports": {
".": "./dist/core/index.js",
"./testing": "./dist/testing/index.js"
},
"browser": {
"./dist/core/node-host.js": "./dist/core/node-host.browser.js",
"./dist/core/logger/console-sink.js": "./dist/core/logger/console-sink.browser.js"
},
"types": "dist/core/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"bin": {
"cadl": "cmd/cadl.js",
"cadl-server": "cmd/cadl-server.js"
},
"files": [
"lib/*.cadl",
"dist/**",
"!dist/test/**"
],
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "npm run gen-manifest && npm run compile && npm run generate-tmlanguage",
"compile": "tsc -p .",
"watch": "tsc -p . --watch",
"watch-tmlanguage": "node scripts/watch-tmlanguage.js",
"generate-tmlanguage": "node scripts/generate-tmlanguage.js",
"dogfood": "node scripts/dogfood.js",
"test": "mocha",
"test-official": "c8 mocha --forbid-only",
"gen-manifest": "node scripts/generate-manifest.js",
"regen-nonascii": "node scripts/regen-nonascii.js",
"fuzz": "node dist/test/manual/fuzz.js run",
"lint": "eslint . --ext .ts --max-warnings=0",
"lint:fix": "eslint . --fix --ext .ts"
},
"dependencies": {
"@babel/code-frame": "~7.16.7",
"ajv": "~8.9.0",
"picocolors": "~1.0.0",
"globby": "~13.1.1",
"js-yaml": "~4.1.0",
"mkdirp": "~1.0.4",
"mustache": "~4.2.0",
"prettier": "~2.7.1",
"node-fetch": "~3.2.0",
"prompts": "~2.4.1",
"vscode-languageserver": "~7.0.0",
"vscode-languageserver-textdocument": "~1.0.1",
"yargs": "~17.3.1",
"node-watch": "~0.7.1",
"change-case": "~4.1.2"
},
"devDependencies": {
"@types/babel__code-frame": "~7.0.3",
"@types/js-yaml": "~4.0.1",
"@types/mkdirp": "~1.0.1",
"@types/mocha": "~9.1.0",
"@types/mustache": "~4.1.2",
"@types/node": "~16.0.3",
"@types/prettier": "2.6.0",
"@types/prompts": "~2.0.14",
"@types/yargs": "~17.0.2",
"@cadl-lang/eslint-config-cadl": "~0.3.0",
"@cadl-lang/internal-build-utils": "~0.3.0",
"eslint": "^8.12.0",
"grammarkdown": "~3.1.2",
"mocha": "~9.2.0",
"c8": "~7.11.0",
"prettier-plugin-organize-imports": "~2.3.4",
"source-map-support": "~0.5.19",
"rimraf": "~3.0.2",
"tmlanguage-generator": "~0.3.0",
"typescript": "~4.7.2",
"vscode-oniguruma": "~1.6.1",
"vscode-textmate": "~6.0.0"
}
}