-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 KB
/
package.json
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
{
"name": "snowyflake",
"version": "2.0.0",
"description": "A modern implementation Snowflake on TypeScript",
"license": "MIT",
"author": {
"name": "Vladlen (Negezor)",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/negezor/snowyflake.git"
},
"homepage": "https://github.com/negezor/snowyflake#readme",
"bugs": "https://github.com/negezor/snowyflake/issues",
"keywords": [
"snowflake",
"twitter",
"bigint",
"typescript",
"generator"
],
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"rollup": "^4.14.1",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.7.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.5"
},
"scripts": {
"prepare": "npm run rollup:build && npm run test",
"build": "npm run rollup:build",
"watch": "npm run rollup:watch",
"clean": "rm -rf lib",
"rollup:build": "rollup --bundleConfigAsCjs -c",
"rollup:watch": "npm run rollup:build -- --watch",
"test": "npm run test:node && npm run lint",
"test:node": "node --import tsx --test test/*.test.ts",
"lint": "npm run lint:biome",
"lint:biome": "biome lint --apply ./src",
"docs:generate": "typedoc --plugin typedoc-plugin-markdown --out docs/api-reference --excludeExternals --readme none src"
}
}