cleanup npm package (#2163)

This commit is contained in:
Andrea Giammarchi
2024-09-13 15:04:21 +02:00
committed by GitHub
parent 1ed77321a5
commit c82dbb755e
3 changed files with 20 additions and 20 deletions

View File

@@ -1,12 +0,0 @@
.eslintrc.cjs
eslint.config.mjs
.pytest_cache/
node_modules/
rollup/
test/
tests/
test-results/
src/stdlib/_pyscript
src/stdlib/pyscript.py
package-lock.json
tsconfig.json

View File

@@ -1,18 +1,18 @@
{
"name": "@pyscript/core",
"version": "0.5.6",
"version": "0.5.12",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@pyscript/core",
"version": "0.5.6",
"version": "0.5.12",
"license": "APACHE-2.0",
"dependencies": {
"@ungap/with-resolvers": "^0.1.0",
"@webreflection/idb-map": "^0.3.1",
"basic-devtools": "^0.1.6",
"polyscript": "^0.15.5",
"polyscript": "^0.15.6",
"sabayon": "^0.5.2",
"sticky-module": "^0.1.1",
"to-json-callback": "^0.1.1",
@@ -2809,9 +2809,9 @@
}
},
"node_modules/polyscript": {
"version": "0.15.5",
"resolved": "https://registry.npmjs.org/polyscript/-/polyscript-0.15.5.tgz",
"integrity": "sha512-uHe/8Y3JlelftXG2SZP8TUJYfvEfffpTIJCoUNTCZI291WN2Bb3cYSv9DLaarNeBxcPALNYQ6B/yzPmVGLntiw==",
"version": "0.15.6",
"resolved": "https://registry.npmjs.org/polyscript/-/polyscript-0.15.6.tgz",
"integrity": "sha512-KjHNHlmOxgmU/gFsSD/YGEv9l38TJkCo3z+E2rO8xeig7qP3qAEh0GOet/6RxExWrB6SGhK0C8J1M4wdszP4pg==",
"license": "APACHE-2.0",
"dependencies": {
"@ungap/structured-clone": "^1.2.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@pyscript/core",
"version": "0.5.6",
"version": "0.5.12",
"type": "module",
"description": "PyScript",
"module": "./index.js",
@@ -8,6 +8,15 @@
"jsdelivr": "./jsdelivr.js",
"browser": "./index.js",
"main": "./index.js",
"files": [
"./dist/",
"./src/",
"./types/",
"./index.js",
"./jsdelivr.js",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./types/core.d.ts",
@@ -16,6 +25,9 @@
"./css": {
"import": "./dist/core.css"
},
"./storage": {
"import": "./dist/storage.js"
},
"./package.json": "./package.json"
},
"scripts": {
@@ -46,7 +58,7 @@
"@ungap/with-resolvers": "^0.1.0",
"@webreflection/idb-map": "^0.3.1",
"basic-devtools": "^0.1.6",
"polyscript": "^0.15.5",
"polyscript": "^0.15.6",
"sabayon": "^0.5.2",
"sticky-module": "^0.1.1",
"to-json-callback": "^0.1.1",