-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.41 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.41 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
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
90
91
92
93
94
95
96
97
98
99
{
"name": "@gcoredev/fastedge-sdk-js",
"version": "2.2.2",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "types/index.d.ts",
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"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-assets": "./bin/fastedge-assets.js",
"fastedge-build": "./bin/fastedge-build.js",
"fastedge-init": "./bin/fastedge-init.js"
},
"files": [
"types",
"bin/fastedge-assets.js",
"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 -s typecheck -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:type-references": "tsc -p ./tsconfig.build.json && node ./scripts/inject-fastedge-reference-types.js",
"build:types": "tsc -p ./tsconfig.build.json",
"generate:docs": "./fastedge-plugin-source/generate-docs.sh",
"generate:wit-world": "npm-run-all -s wit:merge wit:bindings",
"lint": "eslint .",
"prepare": "husky",
"semantic-release": "semantic-release",
"test:solo": "NODE_ENV=test jest -c ./config/jest/jest.config.js --",
"test:unit:dev": "NODE_ENV=test jest -c ./config/jest/jest.config.js -- src/",
"test:unit": "NODE_ENV=test RUN_SLOW_TESTS=true jest -c ./config/jest/jest.config.js -- src/",
"test:integration": "NODE_ENV=test jest -c ./config/jest/jest.config.js -- integration-tests/",
"typecheck": "tsc -p ./tsconfig.typecheck.json ",
"wit:merge": "./runtime/fastedge/scripts/merge-wit-bindings.js",
"wit:bindings": "./runtime/fastedge/scripts/create-wit-bindings.sh"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@gmrchk/cli-testing-library": "^0.1.2",
"@jest/globals": "^30.3.0",
"@jest/transform": "^30.3.0",
"@semantic-release/changelog": "^6.0.3",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"babel-jest": "^30.3.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"conventional-changelog-eslint": "^5.0.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^10.2.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-testing-library": "^7.16.2",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"semantic-release": "^23.1.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
},
"dependencies": {
"@bytecodealliance/jco": "^1.17.6",
"@bytecodealliance/wizer": "^10.0.0",
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5",
"arg": "^5.0.2",
"enquirer": "^2.4.1",
"esbuild": "^0.28.0",
"event-target-polyfill": "^0.0.4",
"magic-string": "^0.30.21",
"npm-run-all2": "^8.0.4",
"prompts": "^2.4.2",
"regexpu-core": "^5.3.2"
}
}