taxeme 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +19 -0
  2. package/bin/cli.js +7 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Taxeme
2
+
3
+ Faceted classification for software.
4
+
5
+ > **This is a namespace reservation.** The real package will be published from the [taxeme monorepo](https://github.com/taxeme-org/taxeme).
6
+
7
+ ## What is Taxeme?
8
+
9
+ Taxeme defines a small set of orthogonal facets (function, architectural role, form, execution model) that classify any software project — language-agnostic, manifest-native, machine-readable.
10
+
11
+ ## Links
12
+
13
+ - Website: <https://taxeme.org>
14
+ - Repository: <https://github.com/taxeme-org/taxeme>
15
+ - Specification: <https://github.com/taxeme-org/taxeme/tree/main/spec>
16
+
17
+ ## License
18
+
19
+ Apache-2.0
package/bin/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ console.log(`taxeme v0.0.1 — not yet released.
3
+
4
+ Taxeme is a faceted classification system for software.
5
+ See https://taxeme.org for details.
6
+ Repository: https://github.com/taxeme-org/taxeme`);
7
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "taxeme",
3
+ "version": "0.0.1",
4
+ "description": "Faceted classification for software",
5
+ "type": "module",
6
+ "bin": {
7
+ "taxeme": "./bin/cli.js"
8
+ },
9
+ "files": ["bin"],
10
+ "keywords": ["taxonomy", "classification", "faceted", "software", "metadata"],
11
+ "license": "Apache-2.0",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/taxeme-org/taxeme.git"
15
+ },
16
+ "homepage": "https://taxeme.org",
17
+ "engines": {
18
+ "node": ">=20"
19
+ }
20
+ }