-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "strided-view",
"version": "1.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src/index.ts"
],
"scripts": {
"start": "esrun index.ts",
"build": "run-s build:*",
"build:docs": "tsdoc --src=./src/index.ts --dest=./API.md",
"build:dist": "tsup",
"watch:build": "tsup --watch",
"test": "run-s test:*",
"test:check": "run-s check",
"test:unit": "vitest run --typecheck",
"watch:unit": "vitest watch --typecheck",
"clean": "rm -rf lib",
"check": "run-s check:*",
"check:tsc": "tsc --noEmit",
"check:prettier": "prettier --check ./src/*.ts",
"check:eslint": "eslint ./src/*.ts",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint ./src/*.ts --fix",
"prepublishOnly": "run-s build",
"release": "np",
"version": "chg release -y && git add -A CHANGELOG.md"
},
"author": "J. Harshbarger",
"license": "MIT",
"description": "StridedView is a library for creating and manipulating 2-dimensional arrays in JavaScript/TypeScript.",
"devDependencies": {
"chg": "^0.4.0",
"eslint": "^9.22.0",
"esrun": "^3.2.26",
"globals": "^16.0.0",
"got": "^14.4.6",
"jimp": "^1.6.0",
"np": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "3.5.3",
"tsdoc-markdown": "^1.1.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vitest": "^3.0.8"
}
}