-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.07 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
{
"name": "@txe/invoke",
"version": "0.1.0",
"scripts": {
"ci": "npm run build && npm run test && npm run lint && npm run check-exports && npm run check-format && npm run check-spelling",
"dev": "concurrently --names=\"tsc,test\" --prefix-colors=\"cyan,green\" \"npm run watch:build\" \"npm run watch:test\"",
"build": "tsc --project tsconfig.build.json",
"test": "vitest run --coverage",
"lint": "eslint ./",
"check-format": "prettier --check ./",
"check-exports": "attw --pack ./ --ignore-rules=cjs-resolves-to-esm",
"check-spelling": "cspell ./",
"lint-fix": "eslint --fix ./",
"format": "prettier --write ./",
"watch:build": "tsc --project tsconfig.test.json --watch --preserveWatchOutput",
"watch:test": "vitest --coverage --clearScreen=false"
},
"description": "IIFE as a function.",
"license": "MIT",
"author": "Chabib N. R. <cnr@tenex.engineering> (https://tenex.engineering)",
"homepage": "https://github.com/tenex-engineering/invoke#readme",
"bugs": {
"url": "https://github.com/tenex-engineering/invoke/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenex-engineering/invoke.git"
},
"keywords": [
"invoke",
"iife"
],
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@txe/eslint-plugin-x": "^0.1.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.6",
"concurrently": "^9.1.0",
"cspell": "^8.16.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.4.10",
"vitest": "^2.1.4"
}
}