-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "@astrauka/wix-code-typescript-wrapper",
"version": "0.12.0",
"description": "Allows to write typescript developing code with Wix Local Editor. Compiles and uploads javascript to Wix.",
"bin": {
"wix-code-ts": "dist/scripts/index.js"
},
"files": [
"initial-structure",
"dist",
"templates"
],
"main": "dist/scripts/index.js",
"scripts": {
"build": "tsc -p scripts/tsconfig.json",
"build:watch": "tsc -p scripts/tsconfig.json -w",
"lint": "eslint --fix .",
"test": "npm run lint",
"publish:minor": "npm version minor && npm publish"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/astrauka/wix-code-typescript-wrapper"
},
"keywords": [
"Velo",
"Wix Code",
"Local Editor",
"typescript"
],
"author": "Karolis Astrauka",
"license": "MIT",
"bugs": {
"url": "https://github.com/astrauka/wix-code-typescript-wrapper/issues"
},
"homepage": "https://github.com/astrauka/wix-code-typescript-wrapper#readme",
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.6",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"typescript": "^4.7.4"
},
"dependencies": {
"del": "^7.0.0",
"recursive-copy": "^2.0.14",
"yargs": "^17.5.1"
}
}