-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.55 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
{
"name": "@neabyte/unicode-gen",
"version": "1.0.1",
"description": "A lightweight TypeScript library for generating random Unicode emojis with embedded data for instant offline usage",
"main": "dist/index.js",
"module": "dist/unicode-gen.esm.js",
"browser": "dist/unicode-gen.min.js",
"unpkg": "dist/unicode-gen.min.js",
"jsdelivr": "dist/unicode-gen.min.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./browser": {
"import": "./dist/unicode-gen.esm.js",
"types": "./dist/index.browser.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Unicode-Gen.git"
},
"homepage": "https://github.com/NeaByteLab/Unicode-Gen#readme",
"bugs": {
"url": "https://github.com/NeaByteLab/Unicode-Gen/issues"
},
"author": "NeaByteLab",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"unicode",
"emoji",
"generator",
"random",
"typescript",
"node",
"browser",
"universal",
"embedded",
"offline"
],
"scripts": {
"build": "tsc && tsc-alias",
"build:browser": "rollup -c",
"build:with-data": "npm run generate-data && npm run build && npm run build:browser",
"prepublishOnly": "npm run build:with-data",
"generate-data": "tsx src/generate-data.ts",
"example": "tsx examples/basic-usage.ts",
"lint": "eslint src/**/*.ts --ignore-pattern 'src/embedded/**/*'",
"lint:fix": "eslint src/**/*.ts --fix --ignore-pattern 'src/embedded/**/*'",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"dependencies": {
"axios": "^1.11.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-sonarjs": "^3.0.4",
"prettier": "^3.6.2",
"rollup": "^4.9.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}