@createiq/frontend-licenses 1.0.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.
@@ -0,0 +1 @@
1
+ 0ca0a77f87d2b0dcfa68bc54338c90277df67f6fa726f0ae728f592a3ea892fa
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@createiq/frontend-licenses",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "license": "UNLICENSED",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "typings": "dist/index.d.ts",
9
+ "engines": {
10
+ "node": ">=22.0.0"
11
+ },
12
+ "dependencies": {
13
+ "spdx-expression-parse": "4.0.0"
14
+ },
15
+ "devDependencies": {
16
+ "@tsconfig/recommended": "1.0.8",
17
+ "@types/spdx-expression-parse": "3.0.5",
18
+ "tsup": "8.3.5",
19
+ "typescript": "5.7.3"
20
+ },
21
+ "scripts": {
22
+ "build": "tsup"
23
+ }
24
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "extends": "@tsconfig/recommended/tsconfig.json",
3
+ "compilerOptions": {
4
+ "target": "esnext",
5
+ "module": "esnext",
6
+ "declaration": true,
7
+ "declarationDir": "dist",
8
+ "outDir": "dist",
9
+ "strict": true,
10
+ "moduleResolution": "bundler",
11
+ "esModuleInterop": true,
12
+ "resolveJsonModule": true,
13
+ "skipLibCheck": true,
14
+ "forceConsistentCasingInFileNames": true
15
+ }
16
+ }
package/tsup.config.ts ADDED
@@ -0,0 +1,14 @@
1
+ import * as path from 'node:path'
2
+ import { defineConfig } from 'tsup'
3
+
4
+ export default defineConfig({
5
+ name: '@createiq/frontend-licenses',
6
+ entry: ['index.ts'],
7
+ format: ['esm', 'cjs'],
8
+ target: 'esnext',
9
+ outDir: 'dist',
10
+ clean: true,
11
+ dts: true,
12
+ sourcemap: true,
13
+ tsconfig: path.resolve(__dirname, 'tsconfig.json'),
14
+ })