generated from nevoland/foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.01 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.01 KB
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
62
{
"name": "@nevoland/get-global",
"version": "2.1.0",
"type": "module",
"main": "./dist/main.js",
"exports": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js"
},
"keywords": [
"global",
"window",
"globalThis",
"get-global"
],
"author": "David Bonnet <david@bonnet.cc>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nevoland/get-global.git"
},
"files": [
"dist",
"lib",
"!lib/old",
"!lib/**/*.test.ts?",
"!src",
"!src/old",
"README.md",
"doc/",
"!doc/.nojekyll"
],
"scripts": {
"test": "npm run lint && npm run format",
"build": "tsc --project tsconfig.package.json",
"build:doc": "typedoc --tsconfig tsconfig.package.json",
"build:doc:save": "typedoc --tsconfig tsconfig.package.json && git add -A && git commit -a -m 'Update doc'",
"prepare": "npm run build",
"format": "prettier --check './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"format:fix": "prettier --write './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
"lint": "npm run lint:ts",
"lint:fix": "npm run lint:ts:fix",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint --fix .",
"release:patch": "npm version patch && git push origin --follow-tags && npm publish",
"release:minor": "npm version minor && git push origin --follow-tags && npm publish",
"release:major": "npm version major && git push origin --follow-tags && npm publish",
"release:alpha": "npm version prerelease --preid=alpha && git push origin --follow-tags && npm publish --tag=next",
"release:beta": "npm version prerelease --preid=beta && git push origin --follow-tags && npm publish --tag=next"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.6.3"
}
}