-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "@aeternity/aeproject",
"version": "5.0.0",
"description": "aeternity smart contract testing tool",
"main": "./build/esm/src/lib/index.js",
"types": "./build/types/lib/index.d.ts",
"bin": {
"aeproject": "./build/esm/src/cli.js"
},
"type": "module",
"exports": {
".": {
"types": "./build/types/lib/index.d.ts",
"import": "./build/esm/src/lib/index.js",
"default": "./build/esm/src/lib/index.js"
}
},
"files": [
"build",
"package.json"
],
"scripts": {
"build": "tsc -b ./tsconfig.esm.json ./tsconfig.types.json && npm run copy-files && tsc-alias",
"build:clean": "rimraf ./build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:ci": "eslint --max-warnings=0 .",
"test": "vitest run",
"prepack": "npm run build:clean && npm run build",
"copy-files": "cp package.json ./build/esm && rsync -avum --include='*.json' --include='artifacts/**' --include='next-artifacts/**' --include='update-artifacts/**' --include='*/' --exclude='*' './src/' './build/esm/src'",
"link:local": "npm uninstall -g @aeternity/aeproject && npm run build:clean && npm run build && npm link"
},
"license": "ISC",
"engines": {
"npm": ">=8.0.0",
"node": ">=18.18.0"
},
"dependencies": {
"@aeternity/aepp-sdk": "^14.0.0",
"commander": "^12.1.0",
"promisify-child-process": "^4.1.2",
"prompts": "^2.4.2"
},
"devDependencies": {
"@aeternity/aeproject": "file:.",
"@babel/eslint-parser": "^7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/eslint-plugin": "^1.1.10",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
}
}