forked from microsoft/vscode-textmate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "@shikijs/vscode-textmate",
"version": "10.0.1",
"type": "module",
"packageManager": "[email protected]",
"description": "Shiki's fork of `vscode-textmate`",
"author": {
"name": "Microsoft Corporation"
},
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/shikijs/vscode-textmate"
},
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shikijs/vscode-textmate/issues"
},
"scripts": {
"build": "tsup",
"test": "mocha --ui=tdd ./src/tests/all.test.ts",
"benchmark": "node benchmark/benchmark.js",
"inspect": "tsx src/tests/inspect.ts",
"typecheck": "tsc --noEmit",
"tmconvert": "node scripts/tmconvert.js",
"version": "npm run compile && npm run test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"release": "bumpp && pnpm publish"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.121",
"bumpp": "^9.9.0",
"mocha": "^9.2.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vscode-oniguruma": "^1.7.0"
}
}