-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "@platformatic/python",
"version": "2.0.0",
"description": "Integration of Python with Wattpm",
"homepage": "https://github.com/platformatic/python#readme",
"license": "Apache-2.0",
"author": "Platformatic Inc. <oss@platformatic.dev> (https://platformatic.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/python.git"
},
"bugs": {
"url": "https://github.com/platformatic/python/issues"
},
"keywords": [
"wattpm",
"thread",
"python"
],
"main": "./lib/index.js",
"type": "module",
"scripts": {
"build": "node -e 'import {schema} from \"./lib/schema.js\"; console.log(JSON.stringify(schema, null, 2))' > schema.json && json2ts > config.d.ts < schema.json",
"lint": "eslint --cache",
"test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=300000 test/*.test.js",
"ci": "npm run lint && npm run test:ci",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"@fastify/static": "^8.2.0",
"@platformatic/python-node": "^2.0.0",
"@platformatic/service": "^3.0.0",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"cleaner-spec-reporter": "^1.0.0",
"eslint": "^9.26.0",
"form-auto-content": "^3.2.1",
"json-schema-to-typescript": "^15.0.4",
"neostandard": "^0.13.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"scope": "@platformatic"
},
"engines": {
"node": ">= 22.19.0"
}
}