mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
58 lines
1.8 KiB
JSON
58 lines
1.8 KiB
JSON
{
|
|
"name": "@pyscript/core",
|
|
"version": "0.2.7",
|
|
"type": "module",
|
|
"description": "PyScript",
|
|
"module": "./index.js",
|
|
"unpkg": "./index.js",
|
|
"jsdelivr": "./jsdelivr.js",
|
|
"browser": "./index.js",
|
|
"main": "./index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/core.d.ts",
|
|
"import": "./src/core.js"
|
|
},
|
|
"./css": {
|
|
"import": "./dist/core.css"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"server": "npx static-handler --cors --coep --coop --corp .",
|
|
"build": "node rollup/stdlib.cjs && node rollup/plugins.cjs && rm -rf dist && rollup --config rollup/core.config.js && eslint src/ && npm run ts",
|
|
"size": "echo -e \"\\033[1mdist/*.js file size\\033[0m\"; for js in $(ls dist/*.js); do echo -e \"\\033[2m$js:\\033[0m $(cat $js | brotli | wc -c) bytes\"; done",
|
|
"ts": "tsc -p ."
|
|
},
|
|
"keywords": [
|
|
"pyscript",
|
|
"core"
|
|
],
|
|
"author": "Anaconda Inc.",
|
|
"license": "APACHE-2.0",
|
|
"dependencies": {
|
|
"@ungap/with-resolvers": "^0.1.0",
|
|
"basic-devtools": "^0.1.6",
|
|
"polyscript": "^0.4.11",
|
|
"type-checked-collections": "^0.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
"@rollup/plugin-terser": "^0.4.3",
|
|
"eslint": "^8.50.0",
|
|
"rollup": "^3.29.4",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"rollup-plugin-string": "^3.0.0",
|
|
"static-handler": "^0.4.2",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pyscript/pyscript.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/pyscript/pyscript/issues"
|
|
},
|
|
"homepage": "https://github.com/pyscript/pyscript#readme"
|
|
}
|