-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "@x-python/core",
"version": "0.0.10",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/suren-atoyan/x-python",
"repository": {
"type": "git",
"url": "https://github.com/suren-atoyan/x-python.git"
},
"bugs": {
"url": "https://github.com/suren-atoyan/x-python/issues"
},
"keywords": [
"python",
"python in browser",
"javascript",
"webassembly"
],
"main": "./dist/x-python.umd.js",
"module": "./dist/x-python.js",
"unpkg": "./dist/x-python.umd.js",
"jsdelivr": "./dist/x-python.umd.js",
"types": "./dist/main.d.ts",
"scripts": {
"dev": "vite",
"lint": "npx eslint src",
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"prepublishOnly": "npm run lint && npm run build && rm -rf ./dist/assets",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"eslint": "^8.30.0",
"husky": "^7.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/x-python.js",
"require": "./dist/x-python.umd.js"
}
},
"dependencies": {
"pyodide": "^0.23.2",
"state-local": "^1.0.7"
},
"lint-staged": {
"src/**/*.{js,ts,json,md}": [
"prettier --write"
],
"src/**/*.{js,ts,json}": [
"eslint --max-warnings=0"
]
},
"author": {
"name": "Suren Atoyan",
"email": "[email protected]",
"url": "http://surenatoyan.com/"
}
}