-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.18 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.18 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
{
"name": "linq-to-typescript",
"version": "12.1.0",
"description": "LINQ ported to TypeScript",
"type": "module",
"exports": {
"types": "./types/index.d.ts",
"import": "./esm/index.js"
},
"main": "./esm/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"maintainers": [
{
"name": "Alexandre Rogozine",
"email": "alexandre.rogozine@live.com"
}
],
"scripts": {
"build": "npx rimraf dist && npm run build:esm && npm run build:declaration",
"build:declaration": "tsc --outDir dist/types --declaration --emitDeclarationOnly",
"build:esm": "tsc --removeComments --outDir dist/esm",
"postbuild": "node --no-warnings config/copy && node --no-warnings config/fix-imports",
"lint": "eslint -c eslint.config.mjs --ext .ts src",
"doc": "npx rimraf doc && typedoc --entryPointStrategy expand ./src --exclude \"**/_*/*.ts\" --exclude \"**/bindArrayEnumerable.ts\" --exclude \"tests/**\" --gitRevision master --out ./doc --excludePrivate --excludeExternals --readme README.md --name \"LINQ To TypeScript\" --includeVersion --plugin typedoc-plugin-merge-modules && node config/editdocs --plugin ",
"release:npm": "npm publish ./dist",
"release:npm-next": "npm publish ./dist --tag next",
"release:pack": "npm pack ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arogozine/LinqToTypeScript.git"
},
"keywords": [
"typescript",
"esm",
"linq",
"async",
"generators",
"enumerable",
"es2022"
],
"author": "Alexandre Rogozine",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^4.4.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"typedoc-plugin-merge-modules": "^6.0.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=17"
},
"bugs": {
"url": "https://github.com/arogozine/LinqToTypeScript/issues"
},
"homepage": "https://github.com/arogozine/LinqToTypeScript#readme"
}