-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
128 lines (128 loc) · 2.88 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@breadboard-ai/python-wasm",
"version": "0.1.14",
"description": "A runPython Breadboard node which uses WASM (Web Assembly)",
"license": "Apache-2.0",
"author": "Google LLC",
"bugs": {
"url": "https://github.com/breadboard-ai/breadboard/issues"
},
"homepage": "https://github.com/breadboard-ai/breadboard/tree/main/packages/build#readme",
"repository": {
"directory": "packages/build",
"type": "git",
"url": "git+https://github.com/breadboard-ai/python-wasm.git"
},
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./index.js": {
"types": null,
"default": null
},
"./internal/*.js": {
"types": "./dist/internal/*.d.ts",
"default": null
},
"./*.js": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"files": [
"dist/**/*.{js,js.map,d.ts}",
"!dist/test/",
"CHANGELOG.md"
],
"scripts": {
"prepack": "npm run build",
"build": "wireit",
"build:tsc": "wireit",
"test": "wireit",
"test:only": "wireit",
"coverage": "wireit",
"lint": "wireit",
"test-and-lint": "wireit",
"dev": "npm run test-and-lint --watch"
},
"wireit": {
"build": {
"dependencies": [
"<dependencies>#<this>",
"build:tsc"
]
},
"build:tsc": {
"command": "tsc --pretty",
"dependencies": [
"<dependencies>#<this>"
],
"files": [
"src/",
"tsconfig.json",
"package.json"
],
"output": [
"dist/"
],
"clean": "if-file-deleted"
},
"test": {
"command": "node --test --test-reporter spec dist/test/*_test.js",
"dependencies": [
"build:tsc"
],
"files": [],
"output": []
},
"test:only": {
"command": "node --test --test-only --enable-source-maps --test-reporter spec dist/test/*_test.js",
"dependencies": [
"build:tsc"
],
"files": [],
"output": []
},
"coverage": {
"command": "node --test --enable-source-maps --experimental-test-coverage --test-reporter lcov --test-reporter-destination=lcov.info dist/test/*_test.js",
"dependencies": [
"build:tsc"
],
"files": [],
"output": [
"lcov.info"
]
},
"lint": {
"command": "eslint src/ --ext .ts",
"dependencies": [
"build:tsc"
],
"files": [
".eslintrc",
"../../.eslintrc.json"
],
"output": []
},
"test-and-lint": {
"dependencies": [
"test",
"lint"
]
}
},
"dependencies": {
"@breadboard-ai/build": "0.12.1",
"pyodide": "^0.27.4"
},
"devDependencies": {
"eslint": "^8.57.1",
"typescript": "^5.8.2",
"wireit": "^0.15.0-pre.2"
}
}