-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "@syntaxs/syntaxs",
"version": "0.0.1-alpha",
"description": "CLI Application to use Syntax Script.",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint ./src/**/*.ts --fix",
"circ": "dpdm ./src/index.ts",
"prebuild": "npm run lint && node distDeletor",
"build": "tsc",
"postbuild": "cls && echo Builded",
"prepublish": "npm run build",
"postpublish": "npm pack --pack-destination=./package",
"pretest": "tsc",
"test": "estest dist"
},
"keywords": [
"syntax",
"ss",
"script"
],
"author": "efekos",
"license": "MIT",
"devDependencies": {
"@efekos/es-test": "^1.0.7",
"@types/chai": "^4.3.20",
"@types/chalk": "^2.2.0",
"@types/chokidar": "^2.1.3",
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@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": {
"@syntaxs/compiler": "file:../compiler/syntaxs-compiler-0.0.3-alpha.tgz",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"figlet": "^1.8.0",
"inquirer": "9.2.16",
"nanospinner": "1.1.0"
},
"type": "module",
"bin": {
"syntaxs": "./dist/index.js"
},
"pack-destination": "./package"
}