-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"name": "pybridge",
"version": "1.4.4",
"description": "TypeScript library for Python interop",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"src",
"index.ts",
"package.json",
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"test": "jest",
"postinstall": "deepkit-type-install",
"build": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json && tsc && tsc --project tsconfig.esm.json"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/marcj/pybridge",
"author": "Marc J. Schmidt <marc@marcjschmidt.de>",
"license": "MIT",
"devDependencies": {
"@deepkit/type-compiler": "^1.0.8",
"@types/jest": "^29.5.1",
"@types/node": "^20.17.57",
"jest": "^29.5.0",
"rxjs": "*",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@deepkit/app": "^1.0.11",
"@deepkit/logger": "^1.0.11",
"@deepkit/type": "^1.0.11"
},
"peerDependencies": {
"rxjs": "*"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"(.+)\\.js": "$1"
},
"testEnvironment": "node",
"testMatch": [
"**/*.spec.ts"
]
}
}