@elysiajs/static
Advanced tools
Comparing version 1.0.0 to 1.0.2
102
package.json
{ | ||
"name": "@elysiajs/static", | ||
"version": "1.0.0", | ||
"author": { | ||
"name": "saltyAom", | ||
"url": "https://github.com/SaltyAom", | ||
"email": "saltyaom@gmail.com" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/elysiajs/elysia-static" | ||
}, | ||
"main": "./dist/index.js", | ||
"devDependencies": { | ||
"@types/bun": "^1.0.4", | ||
"@types/node": "^20.1.4", | ||
"@typescript-eslint/eslint-plugin": "^6.7.4", | ||
"elysia": "1.0.0", | ||
"eslint": "^8.40.0", | ||
"rimraf": "4.4.1", | ||
"typescript": "^5.2.2" | ||
}, | ||
"peerDependencies": { | ||
"elysia": ">= 1.0.0" | ||
}, | ||
"exports": { | ||
"bun": "./dist/index.js", | ||
"node": "./dist/cjs/index.js", | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.js" | ||
}, | ||
"bugs": "https://github.com/elysiajs/elysia-static/issues", | ||
"description": "Plugin for Elysia for serving static folder", | ||
"homepage": "https://github.com/elysiajs/elysia-static", | ||
"keywords": [ | ||
"elysia", | ||
"static", | ||
"public" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"dev": "bun run --hot example/index.ts", | ||
"test": "bun test && npm run test:node", | ||
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js", | ||
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json", | ||
"release": "npm run build && npm run test && npm publish --access public" | ||
}, | ||
"types": "./src/index.ts", | ||
"dependencies": { | ||
"node-cache": "^5.1.2" | ||
} | ||
"name": "@elysiajs/static", | ||
"version": "1.0.2", | ||
"author": { | ||
"name": "saltyAom", | ||
"url": "https://github.com/SaltyAom", | ||
"email": "saltyaom@gmail.com" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/elysiajs/elysia-static" | ||
}, | ||
"main": "./dist/index.js", | ||
"devDependencies": { | ||
"@types/bun": "^1.0.4", | ||
"@types/node": "^20.1.4", | ||
"@typescript-eslint/eslint-plugin": "^6.7.4", | ||
"elysia": "1.0.2", | ||
"eslint": "^8.40.0", | ||
"rimraf": "4.4.1", | ||
"typescript": "^5.2.2" | ||
}, | ||
"peerDependencies": { | ||
"elysia": ">= 1.0.2" | ||
}, | ||
"exports": { | ||
"bun": "./dist/index.js", | ||
"node": "./dist/cjs/index.js", | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.js" | ||
}, | ||
"bugs": "https://github.com/elysiajs/elysia-static/issues", | ||
"description": "Plugin for Elysia for serving static folder", | ||
"homepage": "https://github.com/elysiajs/elysia-static", | ||
"keywords": [ | ||
"elysia", | ||
"static", | ||
"public" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"dev": "bun run --hot example/index.ts", | ||
"test": "bun test && npm run test:node", | ||
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js", | ||
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json", | ||
"release": "npm run build && npm run test && npm publish --access public" | ||
}, | ||
"types": "./src/index.ts", | ||
"dependencies": { | ||
"node-cache": "^5.1.2" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39025