-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@syntaxs/compiler",
"version": "0.0.3-alpha",
"description": "Compiler used to compile Syntax Script projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint ./src/**/*.ts --fix",
"prebuild": "npm run lint && node distDeletor.mjs",
"build": "tsc",
"postbuild": "cls && echo Builded",
"prepack": "npm run build",
"test": "estest",
"pretest": "tsc",
"postpack": "cd ..&&cd ..&&cd .\\LanguageServer\\syntax-script\\server\\&&npm update @syntaxs/compiler"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syntax-script/compiler.git"
},
"keywords": [
"syntaxs",
"syntax",
"script",
"syntax",
"script",
"ss",
"syx",
"sys",
"compiler",
"code",
"compiler"
],
"author": "efekos",
"license": "MIT",
"bugs": {
"url": "https://github.com/syntaxs/compiler/issues"
},
"homepage": "https://github.com/syntaxs/compiler#readme",
"devDependencies": {
"@efekos/es-test": "^1.0.7",
"@types/chai": "^4.3.20",
"@types/js-levenshtein": "^1.1.3",
"@types/node": "^20.16.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^5.1.1",
"eslint": "^8.57.1",
"eslint-plugin-jsdoc": "^48.11.0",
"lsp-types": "^3.17.0-f3"
},
"dependencies": {
"js-levenshtein": "^1.1.6"
}
}