summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-24 05:39:37 -0700
committerFuwn <[email protected]>2022-03-24 05:39:37 -0700
commit020762b7cc2bbd7f09a792e744dc4e0c5eaab9eb (patch)
treeb918ed69978e962dbbb3f5a87b902a54cb616443 /package.json
downloadnode-senpy-020762b7cc2bbd7f09a792e744dc4e0c5eaab9eb.tar.xz
node-senpy-020762b7cc2bbd7f09a792e744dc4e0c5eaab9eb.zip
feat: 0.1.0 :star:
Diffstat (limited to 'package.json')
-rw-r--r--package.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..fe71fd2
--- /dev/null
+++ b/package.json
@@ -0,0 +1,56 @@
+{
+ "name": "senpy",
+ "version": "0.1.0",
+ "description": "The Senpy Club API Wrapper for Node.js",
+ "keywords": [
+ "typescript",
+ "node"
+ ],
+ "homepage": "https://npmjs.org/package/senpy",
+ "bugs": {
+ "email": "[email protected]",
+ "url": "https://github.com/senpy-club/node-senpy/issues"
+ },
+ "license": "GPL-3.0-only",
+ "author": {
+ "url": "https://fuwn.me",
+ "email": "[email protected]",
+ "name": "Fuwn"
+ },
+ "main": "./dist/index.js",
+ "repository": {
+ "url": "https://github.com/senpy-club/node-senpy",
+ "type": "git"
+ },
+ "scripts": {
+ "build": "tsc -b",
+ "test": "jest",
+ "lint": "eslint src/**/*.ts",
+ "lint:fix": "pnpm run lint -- --fix",
+ "prettier": "prettier .",
+ "prettier:fix": "prettier --write .",
+ "coverage": "pnpm run test -- --coverage",
+ "prepublishOnly": "pinst --disable && pnpm run lint && pnpm run build",
+ "postpublish": "pinst --enable"
+ },
+ "dependencies": {
+ "node-fetch": "^3.2.3"
+ },
+ "devDependencies": {
+ "@theoparis/eslint-config": "github:creepinson/eslint-config#update",
+ "@types/jest": "27.4.1",
+ "@types/node": "17.0.1",
+ "esbuild": "0.14.27",
+ "eslint": "8.11.0",
+ "jest": "27.5.1",
+ "pinst": "3.0.0",
+ "prettier": "2.6.0",
+ "ts-jest": "^27.1.2",
+ "typescript": "4.6.2"
+ },
+ "exports": {
+ "./": "./dist/index.js"
+ },
+ "type": "module",
+ "types": "./dist/index.d.ts"
+}