littlewing 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "littlewing",
3
+ "version": "0.1.0",
4
+ "description": "A minimal, high-performance arithmetic expression language with lexer, parser, and executor. Optimized for browsers with zero dependencies and type-safe execution.",
5
+ "keywords": [
6
+ "arithmetic",
7
+ "expression",
8
+ "parser",
9
+ "lexer",
10
+ "executor",
11
+ "language",
12
+ "math",
13
+ "calculator",
14
+ "interpreter",
15
+ "zero-dependencies"
16
+ ],
17
+ "homepage": "https://github.com/brielov/littlewing#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/brielov/littlewing/issues"
20
+ },
21
+ "license": "MIT",
22
+ "author": "Gabriel Vaquer <brielov@icloud.com>",
23
+ "funding": {
24
+ "type": "github",
25
+ "url": "https://github.com/sponsors/brielov"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/brielov/littlewing.git"
30
+ },
31
+ "engines": {
32
+ "node": ">=18.0.0"
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "scripts": {
38
+ "build": "bunup",
39
+ "dev": "bunup --watch",
40
+ "postinstall": "bun simple-git-hooks",
41
+ "lint": "biome check .",
42
+ "lint:fix": "biome check --write .",
43
+ "release": "bumpp --commit --push --tag",
44
+ "test": "bun test",
45
+ "test:coverage": "bun test --coverage",
46
+ "test:watch": "bun test --watch",
47
+ "type-check": "tsc --noEmit"
48
+ },
49
+ "devDependencies": {
50
+ "@biomejs/biome": "^2.3.3",
51
+ "@types/bun": "^1.3.1",
52
+ "bumpp": "^10.3.1",
53
+ "bunup": "^0.15.13",
54
+ "simple-git-hooks": "^2.13.1",
55
+ "typescript": "^5.9.3"
56
+ },
57
+ "peerDependencies": {
58
+ "typescript": ">=4.5.0"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "typescript": {
62
+ "optional": true
63
+ }
64
+ },
65
+ "type": "module",
66
+ "main": "./dist/index.js",
67
+ "module": "./dist/index.js",
68
+ "types": "./dist/index.d.ts",
69
+ "exports": {
70
+ ".": {
71
+ "import": {
72
+ "types": "./dist/index.d.ts",
73
+ "default": "./dist/index.js"
74
+ }
75
+ },
76
+ "./package.json": "./package.json"
77
+ },
78
+ "simple-git-hooks": {
79
+ "pre-commit": "bun run lint && bun run type-check"
80
+ }
81
+ }