mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-25 12:01:07 -05:00
69 lines
2.2 KiB
JSON
69 lines
2.2 KiB
JSON
{
|
|
"name": "@pyscript/core",
|
|
"version": "0.3.0",
|
|
"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 --coi .",
|
|
"build": "npm run build:toml && npm run build:stdlib && npm run build:plugins && npm run build:core && eslint src/ && npm run ts",
|
|
"build:core": "rm -rf dist && rollup --config rollup/core.config.js",
|
|
"build:plugins": "node rollup/plugins.cjs",
|
|
"build:stdlib": "node rollup/stdlib.cjs",
|
|
"build:toml": "node rollup/toml.cjs",
|
|
"dev": "node dev.cjs",
|
|
"release": "npm run build && npm run zip",
|
|
"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 .",
|
|
"zip": "zip -r dist.zip ./dist"
|
|
},
|
|
"keywords": [
|
|
"pyscript",
|
|
"core"
|
|
],
|
|
"author": "Anaconda Inc.",
|
|
"license": "APACHE-2.0",
|
|
"dependencies": {
|
|
"@ungap/with-resolvers": "^0.1.0",
|
|
"basic-devtools": "^0.1.6",
|
|
"polyscript": "^0.5.1",
|
|
"sticky-module": "^0.1.0",
|
|
"to-json-callback": "^0.1.1",
|
|
"type-checked-collections": "^0.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@webreflection/toml-j0.4": "^1.1.3",
|
|
"chokidar": "^3.5.3",
|
|
"eslint": "^8.52.0",
|
|
"rollup": "^4.1.4",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"rollup-plugin-string": "^3.0.0",
|
|
"static-handler": "^0.4.3",
|
|
"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"
|
|
}
|