-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.39 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 4.39 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
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
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "tanaris",
"version": "0.0.1-alpha.5",
"description": "Common utility library for client-side applications. (experimental)",
"keywords": [
"stdlib",
"util"
],
"license": "MIT",
"author": {
"name": "Peyton Seigo",
"url": "https://github.com/pseigo"
},
"homepage": "https://github.com/pseigo/tanaris-js#readme",
"bugs": {
"url": "https://github.com/pseigo/tanaris-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pseigo/tanaris-js.git"
},
"type": "module",
"main": "./dist/tanaris.js",
"types": "./dist/tanaris.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/tanaris.d.ts",
"default": "./dist/tanaris.js"
},
"./arrays": {
"types": "./dist/tanaris/arrays.d.ts",
"default": "./dist/tanaris/arrays.js"
},
"./date_times": {
"types": "./dist/tanaris/date_times.d.ts",
"default": "./dist/tanaris/date_times.js"
},
"./elements": {
"types": "./dist/tanaris/elements.d.ts",
"default": "./dist/tanaris/elements.js"
},
"./numbers": {
"types": "./dist/tanaris/numbers.d.ts",
"default": "./dist/tanaris/numbers.js"
},
"./objects": {
"types": "./dist/tanaris/objects.d.ts",
"default": "./dist/tanaris/objects.js"
},
"./ranges": {
"types": "./dist/tanaris/ranges.d.ts",
"default": "./dist/tanaris/ranges.js"
},
"./strings": {
"types": "./dist/tanaris/strings.d.ts",
"default": "./dist/tanaris/strings.js"
},
"./strings/markdown_table": {
"types": "./dist/tanaris/strings/markdown_table.d.ts",
"default": "./dist/tanaris/strings/markdown_table.js"
},
"./testing": {
"types": "./dist/tanaris/testing.d.ts",
"default": "./dist/tanaris/testing.js"
},
"./testing/jest": {
"types": "./dist/tanaris/testing/jest.d.ts",
"default": "./dist/tanaris/testing/jest.js"
}
},
"files": [
"package.json",
"LICENSE",
"README.md",
"assets/images/badges",
"assets/images/banners",
"dist"
],
"scripts": {
"build": "node scripts/build.js",
"gen-types": "npx tsc",
"gen-docs": "npx typedoc",
"watch:build": "node scripts/watch_build.js",
"watch:gen-types": "npx tsc --watch --preserveWatchOutput",
"watch:gen-docs": "npx typedoc --watch --preserveWatchOutput",
"watch": "npx npm-run-all --parallel watch:**",
"dev-docs-server-python": "env python3 -m http.server 8262",
"dev-docs-server": "npx npm-run-all --parallel watch:gen-docs dev-docs-server-python",
"clean": "node scripts/clean.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "npx eslint",
"format-check": "npx prettier --check *.config.cjs *.config.js package.json tsconfig*.json typedoc.json scripts src test",
"format": "npx prettier --write *.config.cjs *.config.js package.json tsconfig*.json typedoc.json scripts src test",
"format-check-only:config": "npx prettier --check *.config.cjs *.config.js package.json tsconfig*.json typedoc.json",
"format-check-only:scripts": "npx prettier --check scripts",
"format-check-only:src": "npx prettier --check src",
"format-check-only:test": "npx prettier --check test",
"format-only:config": "npx prettier --write *.config.cjs *.config.js package.json tsconfig*.json typedoc.json",
"format-only:scripts": "npx prettier --write scripts",
"format-only:src": "npx prettier --write src",
"format-only:test": "npx prettier --write test",
"check:scripts": "npx tsc --noEmit -p tsconfig.scripts.json",
"check:src": "npx tsc --noEmit",
"check-only:scripts": "npm run check:scripts && npm run lint scripts && npm prettier",
"check-only:src": "npm run check:src && npm run lint src",
"check": "npx npm-run-all --sequential check:src check:scripts lint format-check",
"prepare": "npm run clean && npm run build && npm run gen-types && npm run gen-docs",
"prepublishOnly": "npm run check && npm run test"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@jest/globals": "^29.7.0",
"@types/node": "^22.13.13",
"esbuild": "0.25.1",
"eslint": "^9.22.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "4.1.5",
"prettier": "^3.5.3",
"typedoc": "^0.28.1",
"typescript": "^5.8.2"
}
}