generated from sassywares/crust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@sassywares/trunk",
"version": "1.0.2",
"type": "module",
"description": "Trunk is a simple set of utilities for your JavaScript applications. Read the documentation at https://github.com/sassywares/trunk#readme",
"main": "src/index.ts",
"keywords": [
"typescript",
"javascript",
"utilities"
],
"author": {
"name": "Kashan Ahmad",
"url": "https://kashanahmad.me",
"email": "kashanahmad.me@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sassywares/trunk.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint.fix": "eslint . --fix",
"test": "vitest run",
"test.watch": "vitest",
"format": "npm run lint.fix && prettier --write .",
"dev": "tsc -w",
"build": "tsc --declaration",
"commit": "bash ./.scripts/commit.sh",
"push": "git push && git push --tags",
"release.prepare": "bash ./.scripts/release-prepare.sh",
"release.publish": "bash ./.scripts/release-publish.sh",
"release.version": "bash ./.scripts/release-version.sh",
"release": "bash ./.scripts/release.sh",
"release.dry": "npm run release.prepare && bash ./.scripts/release-publish.sh --dry-run",
"clean": "rm -rf dist node_modules package-lock.json yarn.lock npm run-lock.yaml && npm cache clean --force"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^18.19.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.55.0",
"jsdom": "^23.1.0",
"prettier": "^2.8.8",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.0.4"
},
"exports": {
".": {
"import": "./index.js",
"require": "./index.js"
},
"./package.json": "./package.json",
"./README.md": "./README.md",
"./LICENSE": "./LICENSE",
"./CONTRIBUTING.md": "./CONTRIBUTING.md"
}
}