-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.55 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
{
"name": "@vite/vuilder",
"version": "0.1.0-alpha.23",
"description": "Vuilder Kit",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"bin",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"test:compiler": "mocha -r ts-node/register test/compiler.spec.ts"
},
"keywords": [
"vite",
"solidity",
"vuilder",
"soliditypp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vitelabs/vuilder.git"
},
"bin": {
"vuilder": "lib/cli.js"
},
"author": "ViteLabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/vitelabs/vuilder/issues"
},
"homepage": "https://github.com/vitelabs/vuilder",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-string": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"chai-string": "^1.5.0",
"eslint": "^8.24.0"
},
"dependencies": {
"@types/mocha": "^9.1.0",
"@vite/solppc": "^0.8.0-alpha.4",
"@vite/vitejs": "^2.3.19-alpha.2",
"@vite/vitejs-accountblock": "^2.3.19-alpha.2",
"@vite/vitejs-http": "^2.3.19-alpha.2",
"@vite/vitejs-ipc": "^2.3.19-alpha.2",
"@vite/vitejs-ws": "^2.3.19-alpha.2",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"path": "^0.12.7",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"yargs": "^17.3.1"
}
}