-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@makingstuffs/queries",
"version": "1.2.3",
"description": "A lightweight framework to shorten some JavaScript queries",
"types": "./lib/esm/types/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"type": "module",
"release": {
"branches": [
"main",
"staging"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*"
],
"keywords": [
"javascript",
"browser",
"queries",
"library",
"DOM"
],
"scripts": {
"clean": "rm -rf ./lib",
"test": "jest",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"build": "yarn clean && yarn build:esm && yarn build:cjs && yarn build:esm:types && yarn build:cjs:types",
"build:esm": "rm -rf li/esm && swc --config-file .swcrc.esm.json ./src -d lib/esm",
"build:cjs": "rm -rf li/cjs && swc --config-file .swcrc.cjs.json ./src -d lib/cjs",
"build:esm:types": "rm -rf lib/esm/types && tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"build:cjs:types": "rm -rf lib/cjs/types && tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"prepack": "yarn --silent build",
"semantic-release": "semantic-release"
},
"author": "MakingStuffs <[email protected]> (https://makingstuffs.co.uk)",
"repository": {
"type": "git",
"url": "https://github.com/MakingStuffs/making-stuffs-queries.git"
},
"bugs": {
"url": "https://github.com/MakingStuffs/making-stuffs-queries/issues"
},
"license": "MIT",
"dependencies": {
"@semantic-release/git": "^10.0.1"
},
"devDependencies": {
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.28",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"prettier": "^2.8.3",
"rollup": "^3.10.1",
"semantic-release": "^20.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.2.1",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"resolutions": {
"semantic-release/semver-regex": "^3.1.4",
"@swc/**/got": "^11.8.5",
"@swc/**/semver-regex": "^3.1.4"
}
}