-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
{
"name": "@gesslar/actioneer",
"description": "The best action pipeline thingie this side of Tatooine, or your money back.",
"author": {
"name": "gesslar",
"url": "https://gesslar.dev"
},
"version": "3.0.1",
"license": "0BSD",
"homepage": "https://github.com/gesslar/toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gesslar/actioneer.git"
},
"keywords": [
"actioneer",
"pipeline",
"workflow",
"sabrina",
"salem",
"package",
"composition",
"lasagna"
],
"type": "module",
"exports": {
".": {
"types": "./src/types/index.d.ts",
"browser": "./src/browser/index.js",
"node": "./src/index.js",
"default": "./src/index.js"
},
"./browser": {
"types": "./src/types/index.d.ts",
"default": "./src/browser/index.js"
},
"./node": {
"types": "./src/types/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"src/",
"LICENSE.txt"
],
"sideEffects": false,
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"types": "node -e \"require('fs').rmSync('types',{recursive:true,force:true});\" && tsc -p tsconfig.types.json",
"submit": "npm publish --access public --//registry.npmjs.org/:_authToken=\"${NPM_ACCESS_TOKEN}\"",
"update": "npx npm-check-updates -u && npm install",
"test": "node --test tests/**/*.test.js",
"test:browser": "node --test tests/browser/*.test.js",
"test:node": "node --test tests/node/*.test.js",
"pr": "gt submit -p --ai",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"dependencies": {
"@gesslar/toolkit": "^5.0.1"
},
"devDependencies": {
"@gesslar/uglier": "^2.4.0",
"eslint": "^10.2.0",
"typescript": "^6.0.2"
}
}