-
-
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) · 2.05 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.05 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": "sierpinski-generator",
"version": "1.0.0",
"description": "Sierpiński triangle dataset generator",
"repository": "https://github.com/iam-medvedev/sierpinski-generator.git",
"homepage": "https://github.com/iam-medvedev/sierpinski-generator#readme",
"bugs": "https://github.com/iam-medvedev/sierpinski-generator/issues",
"author": "Ilya Medvedev <ilya@medvedev.im>",
"license": "WTFPL",
"keywords": [
"sierpiński",
"sierpinski",
"triangle",
"generator",
"fractal",
"dataset"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist/*",
"package.json"
],
"scripts": {
"bench": "tsx ./benchmark.ts",
"build": "rm -rf ./dist && NODE_ENV=production yarn build:transpile && NODE_ENV=production yarn build:types",
"build:transpile": "tsx ./build.ts",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"commit": "yarn git-cz",
"demo": "vite -c ./demo/vite.config.ts",
"types": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=junit --outputFile.junit=./coverage.xml"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.28.1",
"benny": "^3.7.1",
"esbuild": "^0.17.4",
"prettier": "^2.8.3",
"tsx": "^3.12.2",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vitest": "^0.28.1",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"semantic-release": "20.0.2",
"cz-conventional-changelog": "3.3.0",
"git-cz": "4.9.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
},
"volta": {
"node": "18.13.0",
"yarn": "1.22.19"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}