Files
discordeno/packages/plugins/validations/package.json
2022-12-04 17:31:04 +08:00

35 lines
1.1 KiB
JSON

{
"name": "@discordeno/validations-plugin",
"version": "18.0.0-alpha.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/discordeno/discordeno.git"
},
"scripts": {
"build": "swc src --out-dir dist",
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"fmt": "prettier -w ./src",
"lint": "eslint \"src/**/*.ts*\"",
"test:unit": "c8 mocha --no-warnings 'tests/**/*.spec.ts'",
"test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'",
"test:type": "tsc --noEmit",
"test:test-type": "tsc --project tsconfig.test.json"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.21",
"eslint": "^8.0.1",
"eslint-config-discordeno": "*",
"tsconfig": "*",
"@discordeno/types": "18.0.0-alpha.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/node": "^18.11.9"
}
}