-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@gcoredev/fastedge-sdk-js",
"version": "1.0.1",
"engines": {
"node": "18 - 20",
"npm": "^8 || ^9 || ^10"
},
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "types/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/G-Core/FastEdge-sdk-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/G-Core/FastEdge-sdk-js.git"
},
"bin": {
"fastedge-build": "./bin/fastedge-build.js",
"fastedge-init": "./bin/fastedge-init.js"
},
"files": [
"types",
"bin/fastedge-build.js",
"bin/fastedge-init.js",
"lib/*.wasm",
"lib/*.js",
"README.md"
],
"scripts": {
"build:cli": "node esbuild/cli-binaries.js",
"build:dev": "npm-run-all -p build:js build:monkey:dev",
"build:js": "npm-run-all -p build:cli build:libs build:types",
"build:monkey:dev": "./runtime/fastedge/build.sh --debug",
"build:monkey:prod": "./runtime/fastedge/build.sh",
"build:libs": "node esbuild/fastedge-libs.js",
"build:types": "tsc -p ./src/static-server/tsconfig.json",
"generate:wit-world": "./create-wit-bindings.sh",
"lint": "npx eslint -c ./config/eslint/repo/.eslintrc.cjs .",
"semantic-release": "semantic-release",
"test:solo": "NODE_ENV=test jest -c ./config/jest/jest.config.js --",
"test:unit": "NODE_ENV=test jest -c ./config/jest/jest.config.js -- src/",
"test:integration": "NODE_ENV=test jest -c ./config/jest/jest.config.js -- integration-tests/",
"test": "NODE_ENV=test jest -c ./config/jest/jest.config.js",
"prepare": "husky"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@gmrchk/cli-testing-library": "^0.1.2",
"@jest/transform": "^29.7.0",
"@semantic-release/changelog": "^6.0.3",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"conventional-changelog-eslint": "^5.0.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unicorn": "^50.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"semantic-release": "^23.0.7",
"typescript": "^5.5.3"
},
"dependencies": {
"@bytecodealliance/jco": "^1.2.4",
"@bytecodealliance/wizer": "^3.0.1",
"acorn": "^8.8.2",
"acorn-walk": "^8.2.0",
"arg": "^5.0.2",
"enquirer": "^2.4.1",
"esbuild": "^0.17.18",
"event-target-polyfill": "^0.0.4",
"magic-string": "^0.30.0",
"npm-run-all": "^4.1.5",
"prompts": "^2.4.2",
"regexpu-core": "^5.3.2"
}
}